src下建立:
redux
–store.js
–count_reducer.js
store.js
该文件专门用于暴露一个
store
对象,整个应用只有一个store对象
-
引入
redux
中的
createStore
函数,创建一个
store
-
createStore
调用时要传入一个为其服务的
reducer
-
记得暴露
store
对象
//引入createStore,专门用于创建redux中最为核心的store对象
import {createStore,applyMiddleware} from 'redux'
//引入为Count组件服务的reducer
import countReducer from './count_reducer'
//引入redux-thunk,用于支持异步action
import thunk from 'redux-thunk'
//暴露store
export default createStore(countReducer,applyMiddleware(thunk))
constant.js
该模块是用于定义
action
对象中type类型的常量值,目的只有一个:便于管理的同时防止程序员单词写错
export const INCREMENT = 'increment'
export const DECREMENT = 'decrement'
count_reducer.js
-
reducer
的本质是一个函数,接收:preState,action,返回加工后的状态 -
reducer
有两个作用:初始化状态,加工状态 -
reducer
被第一次调用时,是
store
自动触发的,传递的
preState
是undefined,传递的
action
是:{type:’@@REDUX/INIT_a.2.b.4} -
该文件是用于创建一个为
Count
组件服务的
reducer
,
reducer
的本质就是一个函数 -
reducer
函数会接到两个参数,分别为:之前的状态(
preState
),动作对象(
action
)
import {INCREMENT,DECREMENT} from './constant'
const initState = 0 //初始化状态
export default function countReducer(preState=initState,action){
// console.log(preState);
//从action对象中获取:type、data
const {type,data} = action
//根据type决定如何加工数据
switch (type) {
case INCREMENT: //如果是加
return preState + data
case DECREMENT: //若果是减
return preState - data
default:
return preState
}
}
count_action.js
该文件专门为
Count
组件生成
action
对象
-
何时需要异步
action
:想要对状态进行操作,但是具体的数据靠异步任务返回。 - 具体编码:
-
npm i redux-thunk
,并配置在
store
中 - 创建action的函数不再返回一般对象,而是一个函数,该函数中写异步任务。
-
异步任务有结果后,分发一个同步的
action
去真正操作数据。 -
异步action不是必须要写的,完全可以自己等待异步任务的结果了再去分发同步
action
。
import {INCREMENT,DECREMENT} from './constant'
//同步action,就是指action的值为Object类型的一般对象
export const createIncrementAction = data => ({type:INCREMENT,data})
export const createDecrementAction = data => ({type:DECREMENT,data})
//异步action,就是指action的值为函数,异步action中一般都会调用同步action,异步action不是必须要用的。
export const createIncrementAsyncAction = (data,time) => {
return (dispatch)=>{
setTimeout(()=>{
dispatch(createIncrementAction(data))
},time)
}
}
index.js
在index.js中监测
store
中状态的改变,一旦发生改变重新渲染
<App/>
备注:
redux
只负责管理状态,至于状态的改变驱动着页面的展示,要靠我们自己写。
import React from 'react'
import ReactDOM from 'react-dom'
import App from './App'
import store from './redux/store'
ReactDOM.render(<App/>,document.getElementById('root'))
store.subscribe(()=>{
ReactDOM.render(<App/>,document.getElementById('root'))
})
compontent/Count.jsx
组件中使用redux
import React, { Component } from 'react'
//引入store,用于获取redux中保存状态
import store from '../../redux/store'
//引入actionCreator,专门用于创建action对象
import {
createIncrementAction,
createDecrementAction,
createIncrementAsyncAction
} from '../../redux/count_action'
export default class Count extends Component {
//加法
increment = ()=>{
const {value} = this.selectNumber
store.dispatch(createIncrementAction(value*1))
}
//减法
decrement = ()=>{
const {value} = this.selectNumber
store.dispatch(createDecrementAction(value*1))
}
//奇数再加
incrementIfOdd = ()=>{
const {value} = this.selectNumber
const count = store.getState()
if(count % 2 !== 0){
store.dispatch(createIncrementAction(value*1))
}
}
//异步加
incrementAsync = ()=>{
const {value} = this.selectNumber
// setTimeout(()=>{
store.dispatch(createIncrementAsyncAction(value*1,500))
// },500)
}
render() {
return (
<div>
<h1>当前求和为:{store.getState()}</h1>
<select ref={c => this.selectNumber = c}>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
<button onClick={this.increment}>+</button>
<button onClick={this.decrement}>-</button>
<button onClick={this.incrementIfOdd}>当前求和为奇数再加</button>
<button onClick={this.incrementAsync}>异步加</button>
</div>
)
}
}
版权声明:本文为qq_41256253原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。