redux使用教程详细介绍
本文介绍redux的使用
安装
cnpm install redux --save
cnpm install react-redux --save
cnpm install redux-devtools --save-dev
如果你之前使用过vuex,我相信redux对于你来说就是易如反掌
redux官网将的很杂很乱,但是实用的东西就那么点
action
action就是一个对象,用来描述你要修改store状态树中的数据
{
type: 'change_name',
name: 'yejiawei'
}
type字段必须要有,这是约定
action创建函数
正常情况下,你需要给每一个action定义一个函数,从而方便调用
export function changeName (value) {
return {
type: 'change_name',
name: value
}
}
Reducer
Reducer的作用,就是将不同的action汇总,然后返回相应的state
const initialState = {
name: 'haha'
}
function firstDemo (state = initialState, action) {
switch (action.type) {
case "change_name":
return Object.assign({},state,{
name: action.name
})
default:
return state
}
}
返回值必须是全新的
拆分reducer
实际开发中都是模块化的,有必要将不同模块的reducer分开
import { combineReducers } from 'redux'
combineReducers({firstDemo,firstDemo1})
store
创建store是非常简单的
import { createStore } from 'redux'
将上面创建的reducer当做参数传递即可
let store = createStore(firstDemo)
store.getState() // 获取store中的数据
let unsubscribe = store.subscribe( () => {
...
} ) // 监听器
store.dispatch(changeName('yejiawei')) // 调用action修改store中的state
unsubscribe() // 注销监听器
在react组件中使用redux
下面我将列出,正常项目开发的结构
index.js
import React from 'react'
import ReactDOM from 'react-dom'
import { Provider } from 'react-redux'
import store from './store.js'
import App from './app.js'
ReactDOM.render(
<Provider store={store}>
<App />
</Provider>,
document.getElementById('root')
)
使用 Provider 组件传递store到react组件中
app.js
import React from 'react'
import MyComponent1 from './component1.js'
import { connect } from 'react-redux'
class MyComponent extends React.Component {
render () {
return (
<div>
<MyComponent1 {...this.props}></MyComponent1>
</div>
)
}
}
function appWant(state) {
return state
}
export default connect(appWant)(MyComponent)
使用connect方法将react组件连接到redux中,接受一个回调函数,并且回调函数的参数就是store中的state
** 原则,使用connect方法尽量只在容器组件中使用,其余的子组件如果也想访问store,就通过props传递即可
store.js
import { createStore } from 'redux'
const initialState = {
message: 'yejiawei'
}
function firstApp (state = initialState, action) {
switch (action.type) {
case "change_message":
return Object.assign({},state,{
message: action.message
})
default:
return state
}
}
let store = createStore(firstApp);
export default store
此文件专门用来管理和生成store的,同时还可以将reducer专门再生成一个reducer.js管理
component1.js
此组件代表类似的子组件
import React from 'react'
import { delayData } from './actions.js'
class MyComponent extends React.Component {
componentDidMount() {
this.props.dispatch(changeMessage('我改变了'))
}
render() {
return (
<div style={{"height": "200px","width": "200px","background": "red","position": "absolute","top": "100px", "left": 0}}>我是组件一{this.props.message}</div>
)
}
}
export default MyComponent
在子组件中访问store中的state和dispatch通过props直接访问即可
actions.js
此文件专门用来处理redux中的action生成函数
export function changeMessage (text) {
return {
type: 'change_message',
message: text
}
}
在react组件中使用redux补充
上面讲到的connect方法,还可以传递其他参数
注意到我们传递给connect方法的参数是如下的这个函数
function appWant(state) {
return state
}
这个函数会在state改变的时候更新整个app组件,也就是说不管你在哪里dispatch了,那么整个app都会重新更新,性能损失
所以可以选择只传递一部分state,如下
function appWant(state,ownProps) {
return {
age: state.age
}
}
然后在其他的组件中也调用connect方法,管理自己的state,而不是只通过props传递,这样可以提高性能
另外也可以把action单独传递或者传递一部分,我不建议这样做,对性能没有任何提高,反而提升代码复杂度,直接使用dispatch简单清晰明了
在app.js文件中改成如下代码
import React from 'react'
import MyComponent1 from './component1.js'
import { connect } from 'react-redux'
import { bindActionCreators } from 'redux';
import { delayData } from './actions.js'
class MyComponent extends React.Component {
render () {
return (
<div>
<MyComponent1 {...this.props}></MyComponent1>
</div>
)
}
}
function appWant(state) {
return {
age: state.age
}
}
function funcWant(dispatch) {
return {
demo: bindActionCreators({delayData},dispatch)
}
}
export default connect(appWant,funcWant)(MyComponent)
然后再component1.js中,就不需要通过dispatch调用了
this.props.demo.delayData('我又变了');
异步action
上面讲的内容是同步的,也就是说dispatch方法调用后,store中的state立即发生改变
那么,现在有一个需求是,dispatch的写法不发生任何改变,还可以进行异步操作
如何操作?只需要将action返回一个函数,然后在函数里面进行异步处理就完事儿了
要实现这个操作就要借助 redux-thunk-middleware 中间件
安装 cnpm install --save redux-thunk
然后将上面的store.js文件改成下面的
import { createStore, applyMiddleware } from 'redux' // 导入applyMiddleware方法用来使用中间件
import thunkMiddleware from 'redux-thunk' // 导入中间件
const initialState = {
message: 'yejiawei'
}
function firstApp (state = initialState, action) {
switch (action.type) {
case "change_message":
return Object.assign({},state,{
message: action.message
})
default:
return state
}
}
let store = createStore(firstApp,applyMiddleware(thunkMiddleware)); // 将中间件应用于store中
export default store
然后再actions.js中添加一个异步action
export function delayData (value) {
return (dispatch) => {
setTimeout( () => {
dispatch(changeMessage(value))
},1000 )
}
}
最后,直接在component1.js文件中直接调用即可
import React from 'react'
import { delayData } from './actions.js'
class MyComponent extends React.Component {
componentDidMount() {
this.props.dispatch(delayData('我改变了'))
}
render() {
return (
<div style={{"height": "200px","width": "200px","background": "red","position": "absolute","top": "100px", "left": 0}}>我是组件一{this.props.message}</div>
)
}
}
export default MyComponent
异步action的补充一
上面在定义异步action时,在返回的函数里面传递了dispatch参数,其实它还支持如下的参数
还是借助上面的例子
传递getState获取store中的state
export function delayData (value) {
return (dispatch,getState) => {
setTimeout( () => {
dispatch(changeMessage(value))
console.log(getState())
},1000 )
}
}
传递自定义参数
在store中将创建store的代码改成
let store = createStore(firstApp,applyMiddleware(thunkMiddleware.withExtraArgument( {a: 'aaa', b: 'bbb'} )));
然后再actions.js中获取参数
export function delayData (value) {
return (dispatch, getState, {a,b}) => {
setTimeout( () => {
dispatch(changeMessage(value))
console.log(a,b)
console.log(getState())
},1000 )
}
}
redux使用教程详细介绍的更多相关文章
- mongodb 3.0下载安装、配置及mongodb最新特性、基本命令教程详细介绍
mongoDB简介(本文由www.169it.com搜集整理) MongoDB是一个高性能,开源,无模式的文档型数据库,是目前在IT行业非常流行的一种非关系型数据库(NoSql).它在许多场景下可用于 ...
- 【WiFi密码破解详细图文教程】ZOL仅此一份 详细介绍从CDlinux U盘启动到设置扫描破解-破解软件论坛-ZOL中关村在线
body { font-family: Microsoft YaHei UI,"Microsoft YaHei", Georgia,Helvetica,Arial,sans-ser ...
- Linux截屏工具scrot用法详细介绍
Scrot是Linux命令行中使用的截图工具,能够进行全屏.选取等操作,下面小编将针对Scrot截图工具的用法给大家做个详细介绍,通过操作实例来学习Scrot的使用. 在Linux中安装Scrot ...
- 用grunt搭建自动化的web前端开发环境实战教程(详细步骤)
用grunt搭建自动化的web前端开发环境实战教程(详细步骤) jQuery在使用grunt,bootstrap在使用grunt,百度UEditor在使用grunt,你没有理由不学.不用!前端自动化, ...
- snoopy(强大的PHP采集类) 详细介绍
Snoopy是一个php类,用来模拟浏览器的功能,可以获取网页内容,发送表单,可以用来开发一些采集程序和小偷程序,本文章详细介绍snoopy的使用教程. Snoopy的一些特点: 抓取网页的内容 fe ...
- WDCP是什么 关于WDCP的详细介绍
WDCP是WDlinux Control Panel的简称,是一套用PHP开发的Linux服务器管理系统以及虚拟主机管理系统,,旨在易于使用Linux系统做为我们的网站服务器,以及平时对Linux服务 ...
- Xilinx Vivado的使用详细介绍(1):创建工程、编写代码、行为仿真
Xilinx Vivado的使用详细介绍(1):创建工程.编写代码.行为仿真 Author:zhangxianhe 新建工程 打开Vivado软件,直接在欢迎界面点击Create New Projec ...
- vue对比其他框架详细介绍
vue对比其他框架详细介绍 对比其他框架 — Vue.jshttps://cn.vuejs.org/v2/guide/comparison.html React React 和 Vue 有许多相似之处 ...
- Arduino可穿戴开发入门教程LilyPad介绍
Arduino可穿戴开发入门教程LilyPad介绍 Arduino输出模块 LilyPad官方共提供了4种输出模块,他们分别是单色LED模块(图1.5).三色LED模块(图1.6).蜂鸣器模块(图1. ...
随机推荐
- BZOJ 4066 kd-tree 矩形询问求和
第一次遇见强制在线的题目 每个操作都和前面的ans有关 所以不能直接离线做 在这个问题中 kdtree更像一个线段树在一维单点修改区间询问的拓展一样 如果区间被询问区间完全包含 就不用继续递归 插入时 ...
- BZOJ3242/UOJ126 [Noi2013]快餐店
本文版权归ljh2000和博客园共有,欢迎转载,但须保留此声明,并给出原文链接,谢谢合作. 本文作者:ljh2000 作者博客:http://www.cnblogs.com/ljh2000-jump/ ...
- 关于linux的/var/www/html
linux目录下有个目录:/var/www/html,把文件放到这个目录下就可以通过IP很方便的访问, 如果要访问 /var/www/html/myfolder/test.html 我在浏览器地址栏输 ...
- java项目 里的DAO,model,service, IMPL含义
在一般工程中 基本上都会出现上述的字眼首先 DAO 提供了应用程序与数据库之间的操作规范 和操作 用于通常数据库的增删查改 一般如果使用框架 都是由框架自动生成,提高访问效率和便于快速开发.hiber ...
- dataframe按值(非索引)查找多行
很多情况下,我们会根据一个dataframe里面的值来查找而不是根据索引来查找. 首先我们创建一个dataframe: >>> col = ["id"," ...
- MySql基础学习-总纲
- ansible安装nginx
ansible安装nginx(实现回滚发布功能:下一篇博客.没想到写长了) 一.准备工作 1.准备两台机器 sai: 192.168.131.132 ——> ansible的服务端 luojy ...
- ZOJ - 3430 ac自动机
这题主要就是解码过程很恶心,不能用char存,一共wa了20发 题意:先给n串加密后的字符,然后m串加密后的字符,解码之后求n对应每个m的匹配数,很显然的ac自动机 加密过程是先用对应ascii表的标 ...
- 应该是实例化对象的没有对属性赋值时,自动赋值为null,但不是空指针对象引用
此时会输出两个null. Users类的实例是myUsers,但是由于javabean的作用范围是page,所以前面页面传送的javabean的设置的属性全部不能接收到.所以对象myUsers属性为自 ...
- hdu-2673-shǎ崽 OrOrOrOrz(水题)
注意输出格式 #include <iostream> #include <algorithm> using namespace std; +]; int main() { in ...