Rx.Observable.timer(3000, 1000) .subscribe(res ... Rx.Observable.interval(1000) .map(v => { if (v === 4) { throw 'Error'; } return v; }) ...
確定! 回上一頁