Dva 表示法

Posted xiaoyutongxue

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Dva 表示法相关的知识,希望对你有一定的参考价值。

 

 

抄袭自 [飞行的泥] 他的云雀主页: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‘) );
    ,
  ,
);

 

以上是关于Dva 表示法的主要内容,如果未能解决你的问题,请参考以下文章

Dva 基本操作

React dva 的使用

Dva 5分钟上手指南

dva使用注意事项

dva+react项目搭建

react+dva+antd接口调用方式