标签:call oar count pac cal mod image names bsp
抄袭自 [飞行的泥] 他的云雀主页:https://www.yuque.com/flying.ni
app.model({ namespace: ‘count‘, state: { record: 0, current: 0, }, reducers: { add(state) { const newCurrent = state.current + 1; return { ...state, record: newCurrent > state.record ? newCurrent : state.record, current: newCurrent, }; }, minus(state) { return { ...state, current: state.current - 1}; }, }, effects: { *add(action, { call, put }) { yield call(delay, 1000); yield put({ type: ‘minus‘ }); }, }, subscriptions: { keyboardWatcher({ dispatch }) { key(‘?+up, ctrl+up‘, () => { dispatch({type:‘add‘}) }); }, }, });
标签:call oar count pac cal mod image names bsp
原文地址:https://www.cnblogs.com/xiaoyutongxue/p/11415454.html