RxJS v6+ import { timer } from 'rxjs'; // 1秒后发出0,然后结束,因为没有提供第二个参数 const source = timer(1000); // 输出: 0 const subscribe ...
確定! 回上一頁