复杂以后 setState 就不太方便了

所以使用Redux来管理 React只负责View。

Store、State、Dispatch、Reducer

reducer(state,action)

{

switch(action.type){

case ...

... ...

return newAction;

}

}

·通过Reducer创建Store

·Store.dispatch(action)来修改状态

·Reducer函数接受state和action,返回新的state,可用store.subscribe监听每次修改

function listener() {
const current = store.getState()
console.log(current);
}
store.subscribe(listener)
store.dispatch({ type: '...' })
store.dispatch({ type: '...' })
 
 
 
二、Redux配合React使用
 
index.js:
const store = createStore(reducer)
<App store={store}/>
 
App.js:
 
render(){
const num = this.props.store
return({num})
}
 
三、Redux处理异步
 
import thunk from 'redux-thunk'
 
import { createStore, applyMiddleware } from 'redux'
const store = createStore(reducer,applyMiddleware(thunk))
 
//需要提交action的地方用dispatch执行一下
Action(){
     return  dispatch=>{
 
          setTimeout(()=>{
               dispatch({type:'ADD_GUN'})
          },2000)
 
     }
}
 
store.dispatch(Action())
 
四、调试工具
Chrome中的redux dev tool插件
 
import { createStore, applyMiddleware, compose } from 'redux'
 
const store = createStore(counter, compose(
applyMiddleware(thunk),
window.devToolsExtension ? window.devToolsExtension() : null
))
 
五、使用react-redux
 
//从现在开始忘记store.subscribe
 
Provider 和 Connect接口
 
·Provider放在组件最外层,传入store即可,只用一次
import { Provider } from 'react-redux'
 
<Provider store={store}>
 <App />
</Provider>
 
在app.js中:
 
import { connect } from 'react-redux'
 
const mapStatetoProp = (state) => {
return { num: state }
}
 
const actionCreators = { addGUN, removeGUN, addGUNAsync }
 
//装饰器
App = connect(mapStatetoProp, actionCreators)(App)
 
然后,
<button onClick={addGUN}>申请武器</button>
//不需要store.dispatch(addGUN())了  
注:addGUN是一个action creator
 
 

mapStateToProps会订阅 Store,每当state更新的时候,就会自动执行,重新计算 UI 组件的参数,从而触发 UI 组件的重新渲染。

mapStateToProps的第一个参数总是state对象,还可以使用第二个参数,代表容器组件的props对象。

装饰器

 
@connect([mapStateToProps], [mapDispatchToProps], [mergeProps],[options])
 
mapStateToProps(state, ownProps) : stateProps

这个函数允许我们将 store 中的数据作为 props 绑定到组件上。

mapDispatchToProps(dispatch, ownProps): dispatchProps

connect 的第二个参数是 mapDispatchToProps,它的功能是,将 action 作为 props 绑定到组件上,也会成为 MyComp 的 props。

 
总结
connect内第一个是state属性
第二个是你要什么方法
Prover放在最外面store传到属性中
 
 
六、React-router4
·BrowserRouter包裹整个应用
·Router路由对应渲染的组件,可嵌套
·Link跳转专用
·Switch
·Redirect
 

React开发实时聊天招聘工具 -第四章 Redux的更多相关文章

  1. React开发实时聊天招聘工具 -第三章 React基础知识回顾

    function a (props) { return <h1>hello world{this.props.asd}</h1> } class a extends React ...

  2. React开发实时聊天招聘工具 -第六章 登陆注册(2)

    1.bodyParser和cookieParser:   const bodyParser = require('body-parser') const cookieParser = require( ...

  3. React开发实时聊天招聘工具 -第六章 登陆注册(1)

    1.基于cookie的用户认证 express 依赖 cookie-parser 2.axios语法: axios.get('/data').then(res=>{ if(res.status= ...

  4. React开发实时聊天招聘工具 -第五章 需求分析

    Axios的使用 axios.get('/data') .then(res=>{ if(res.status==200) this.setState(data:res.data) })

  5. React开发实时聊天招聘工具 -第一章

    第一章 课程道学 6个页面 弱化css Antd-mobile作为组件库 Redux 状态管理 React-Router 路由 Axios异步请求 后端Express框架 Socket.io 数据库: ...

  6. React开发实时聊天招聘工具 -第二章

    2-1 介绍React开发环境 npm install -g create-react-app xxx npm run eject   来配置webpack 2-2 ES6常用语法 其他 还有一些特性 ...

  7. react+redux+react-router+node.js 开发实时聊天App 学习记录

    一.课程导学 1.React 主要解决的是UI层的问题,应用的状态需要借助Redux等状态管理. 2.前端React  +  antd-mobile UI组件库 + Redux 状态管理库 + Rea ...

  8. Vue2.5开发去哪儿网App 第四章笔记 上

    一 .  组件细节知识点 1.  解决组件在h5中编码规范 例如 : table , ul , ol  等等 <table> <tbody> <row></r ...

  9. Vue2.5开发去哪儿网App 第四章笔记 下

    1.解决非父子组件之间的传值问题 非父子组件传值(Bus/总线/发布订阅模式/观察者模式) 给 Vue类上挂在一个属性,然后创建vue实例时,实例就拥有了这个属性 Vue.prototype.bus ...

随机推荐

  1. softmax regression in c++

    #include <iostream>#include <vector>#include <cmath>#include <algorithm>#inc ...

  2. Spring的Task任务

    转自:http://liuna718-163-com.iteye.com/blog/2215076 Spring Task提供两种方式进行配置,一种是annotation(标注),而另外一种就是XML ...

  3. org.springframework.web.struts.ContextLoaderPlugIn 和 org.springframework.web.context.ContextLoaderListener

    org.springframework.web.struts.ContextLoaderPlugIn 和 org.springframework.web.context.ContextLoaderLi ...

  4. MySQL基础操作——转

    原文: [培训]MySQL yum安装mysql:yum -y install mysql*- 或者 yum -y install mysql* 启动数据库服务:/etc/init.d/mysqld ...

  5. Excel学习 -- 数据透视表功能

    Excel -- 数据透视表基础 数据透视表(Pivot Table)是一种交互式的表,可以进行某些计算,如求和与计数等.所进行的计算与数据跟数据透视表中的排列有关.    之所以称为数据透视表,是因 ...

  6. bzoj 1680: [Usaco2005 Mar]Yogurt factory【贪心】

    贪心,一边读入一边更新mn,用mn更新答案,mn每次加s #include<iostream> #include<cstdio> using namespace std; in ...

  7. Activiti6.0教程 Service用途剖析 (二)

    这节我们学习下Activiti的7大对象,首先我们从ProcessEngine接口开始看. /* Licensed under the Apache License, Version 2.0 (the ...

  8. 【SQL】从待选项中随机选一个

    由于SQL Server没有数组类型,所以在面对“从若干待选项中选一个”这种需求时,往往要采取变通办法,比如弄个‘a|b|c’这样的字符串然后对字符串进行处理:又或者把待选项塞进一个临时表,然后把问题 ...

  9. win7/8系统中php5.3和5.4、5.5不能加载php_curl.dll解决办法

    win7/8系统中php5.3和5.4.5.5不能加载php_curl.dll解决办法   作者:用户 来源:互联网 时间:2016-06-23 18:54:33 php变量注释系统模块 摘要: 本文 ...

  10. icons使用

    1.将选中图标加入项目 2.unicode方式查看连接在线连接 3.复制代码到样式表 4.引用样式,并设置I标签,颜色和大小可以通过设置i标签color和font-size进行调整 <i cla ...