React-Native开发从入门到实战项目总结React-Native 开发阵营React Native开发

redux框架之createStore()

2017-11-22  本文已影响369人  光强_上海

createStore()

参数

返回值

import { createStore } from 'redux'

function todos(state = [], action) {
  switch (action.type) {
    case 'ADD_TODO':
      return state.concat([ action.text ])
    default:
      return state
  }
}

let store = createStore(todos, [ 'Use Redux' ])

store.dispatch({
  type: 'ADD_TODO',
  text: 'Read the docs'
})

console.log(store.getState())
// [ 'Use Redux', 'Read the docs' ]

注意点:

福利时间

上一篇 下一篇

猜你喜欢

热点阅读