2
說你做這樣的事情:如何在rx.js中使用bufferWithCount創建第一個項目?
Rx.Observable.range(1, 5).bufferWithCount(2, 1).subscribe(console.log);
這將返回:
[1, 2]
[2, 3]
[3, 4]
[4, 5]
[5]
我想對於結果看起來像(基本上迫使第一個值發射):
[<userDefined>, 1]
[1, 2]
[3, 4]
etc...
當然。出於某種原因,我沒有想過在bufferWithCount之前嘗試startWith。謝謝。 – Core