鍍金池/ 問答/Linux  HTML/ dva.js GettingStarted

dva.js GettingStarted

dva GitHub demo運(yùn)行有問題

文檔地址

https://github.com/dvajs/dva/...

問題描述

下面是文檔的代碼,沒有任何改動(dòng)。npm startreducers add 不起左右,只有 effects add起作用。產(chǎn)生的問題點(diǎn)擊按鈕1秒后數(shù)字減1,不會(huì)加1,最高分永遠(yuǎn)是0

import dva, { connect } from 'dva';
import { Router, Route } from 'dva/router';
import React from 'react';
import styles from './index.less';
import key from 'keymaster';

const app = dva();

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'}) });
    },
  },
});

const CountApp = ({count, dispatch}) => {
  return (
    <div className={styles.normal}>
      <div className={styles.record}>Highest Record: {count.record}</div>
      <div className={styles.current}>{count.current}</div>
      <div className={styles.button}>
        <button onClick={() => { dispatch({type: 'count/add'}); }}>+</button>
      </div>
    </div>
  );
};

function mapStateToProps(state) {
  return { count: state.count };
}
const HomePage = connect(mapStateToProps)(CountApp);

app.router(({history}) =>
  <Router history={history}>
    <Route path="/" component={HomePage} />
  </Router>
);

app.start('#root');


// ---------
// Helpers

function delay(timeout){
  return new Promise(resolve => {
    setTimeout(resolve, timeout);
  });
}
回答
編輯回答
兔寶寶

在dva@2以上,如果reducerseffects中的方法重名,直接忽略reducers中的方法,執(zhí)行effects中的方法。

2017年8月1日 16:59