如何查找状态是否存在
此代码:
this._store.pipe(select<EventReducerState>('eventReducer'))
.subscribe(state => {
if (state !== null && state.mainEvent) {
this.event = state.mainEvent;
.....
}
});
将状态元素提供给我,但是当商店中有更改时它就会运行
我想知道页面初始化状态是否存在 如果不存在,则创建状态。
如何一次找到状态?