react-redux基本使用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react-redux基本使用相关的知识,希望对你有一定的参考价值。
- 图解:
- 代码:
var createStore = require(‘redux‘).createStore var indexStore = createStore(function(state=0,action){ switch(action.type){ case 1: return ++state case 0: return --state default: return state } }) indexStore.subscribe(function(){ console.log(indexStore.getState()) }) indexStore.dispatch({type:1})
- 效果:
以上是关于react-redux基本使用的主要内容,如果未能解决你的问题,请参考以下文章
React 入门学习(十五)-- React-Redux 基本使用
React 入门学习(十五)-- React-Redux 基本使用