Skip to content

Commit 49cb48e

Browse files
committed
fix: Observable once bug
1 parent 005102e commit 49cb48e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/Core/Observable.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,9 @@ export default class Observable<TParams extends Object = any> extends SObject {
127127
* 通过一个参数触发一次广播,调用所有回调。
128128
*/
129129
public notify(params: TParams) {
130+
const originLength = this._queue.length;
130131
this._index = 0;
131-
this._length = this._queue.length;
132+
this._length = originLength;
132133

133134
while (this._index < this._length) {
134135
const {callback, isOnce} = this._queue[this._index];
@@ -149,6 +150,10 @@ export default class Observable<TParams extends Object = any> extends SObject {
149150
}
150151
}
151152

153+
if (originLength > 0 && this._length === 0) {
154+
this.onEmpty();
155+
}
156+
152157
return this;
153158
}
154159
}

0 commit comments

Comments
 (0)