参考学习网址:
1、https://www.jianshu.com/p/7a867be0594a如何优雅地在React项目中使用Redux
2、http://www.ruanyifeng.com/blog/2016/09/redux_tutorial_part_one_basic_usages.html阮一峰
本文主要是根据第一个网址中的内容进行学习。
本文所写代码的github地址:https://github.com/hushaohhy/react-router-dom-demo
一、准备工作
1、安装所用到的插件
yarn add redux --save-dev
yarn add redux-thunk --save-dev
yarn add react-redux --save-dev
2、项目的解构如下图
二、代码的编写
1、第一步编写state.js
// state.js
// 提供默认值,既然用Redux来管理数据,那么数据就一定要有默认值,所以我们将state的默认值统一放置在state.js文件
// 声明默认值
// 这里我们列举两个示例
// 同步数据:pageTitle
// 异步数据:infoList(将来用异步接口获取)
export default {
pageTitle: '首页',
infoList: []
}
2、第二步编写reducers.js
// 第2步:创建reducer,它就是将来真正要用到的数据,我们将其统一放置在reducers.js文件
// reducers.js
// 工具函数,用于组织多个reducer,并返回reducer集合
import { combineReducers } from 'redux'
// 默认值
import defaultState from './state.js'
// 一个reducer就是一个函数
function pageTitle (state = defaultState.pageTitle, action) {
// 不同的action有不同的处理逻辑
switch (action.type) {
case 'SET_PAGE_TITLE':
return action.data
default:
return state
}
}
function infoList (state = defaultState.infoList, action) {
switch (action.type) {
case 'SET_INFO_LIST':
return action.data
default:
return state
}
}
// 导出所有reducer
export default combineReducers({
pageTitle,
infoList
})
3、第三步编写actions.js
// 第3步:创建action,现在我们已经创建了reducer,但是还没有对应的action来操作它们,所以接下来就来编写action
// actions.js
// action也是函数
export function setPageTitle (data) {
return (dispatch, getState) => {
dispatch({ type: 'SET_PAGE_TITLE', data: data })
}
}
/*
export function setInfoList (data) {
return (dispatch, getState) => {
// 使用fetch实现异步请求
window.fetch('/api/getInfoList', {
method: 'GET',
headers: {
'Content-Type': 'application/json'
}
}).then(res => {
return res.json()
}).then(data => {
let { code, data } = data
if (code === 0) {
dispatch({ type: 'SET_INFO_LIST', data: data })
}
})
}
}*/
4、第四步编写index.js
// 最后一步:创建store实例
// index.js
// applyMiddleware: redux通过该函数来使用中间件
// createStore: 用于创建store实例
import { applyMiddleware, createStore } from 'redux'
// 中间件,作用:如果不使用该中间件,当我们dispatch一个action时,需要给dispatch函数传入action对象;但如果我们使用了这个中间件,那么就可以传入一个函数,这个函数接收两个参数:dispatch和getState。这个dispatch可以在将来的异步请求完成后使用,对于异步action很有用
import thunk from 'redux-thunk'
// 引入reducer
import reducers from './reducers.js'
// 创建store实例
let store = createStore(
reducers,
applyMiddleware(thunk)
)
export default store
三、在项目中的使用
1、在入口文件App.js中的编写
import React, { Component } from 'react';
import { BrowserRouter as Router, Route, Link } from "react-router-dom"
import AppRouter from './router/router'
import './services/http'
import './services/httpConfig'
// Provider是react-redux两个核心工具之一,作用:将store传递到每个项目中的组件中
// 第二个工具是connect,稍后会作介绍
import {Provider} from 'react-redux'
// 引入创建好的store实例
import store from './store/index'
class App extends Component {
render() {
return (
{/* 将store作为prop传入,即可使应用中的所有组件使用store */}
{
AppRouter.map((route,key) => {
if(route.exact) {
// 严格模式返回
return(
(
//主要是为了传递嵌套路由到子组件
//类似于
)}
/>
)
}else {
return(
(
//主要是为了传递嵌套路由到子组件
//类似于
)}
/>
)
}
})
}
);
}
}
export default App;
2、新建TestRedux组件如下
import React, { Component } from 'react'
// connect方法的作用:将额外的props传递给组件,并返回新的组件,组件在该过程中不会受到影响
import { connect } from 'react-redux'
// 引入action
// import { setPageTitle, setInfoList } from '../store/actions.js'
import { setPageTitle } from '../store/actions.js'
// mapStateToProps:将state映射到组件的props中
const mapStateToProps = (state) => {
return {
pageTitle: state.pageTitle,
infoList: state.infoList
}
}
// mapDispatchToProps:将dispatch映射到组件的props中
const mapDispatchToProps = (dispatch, ownProps) => {
return {
setPageTitle (data) {
// 如果不懂这里的逻辑可查看前面对redux-thunk的介绍
dispatch(setPageTitle(data))
// 执行setPageTitle会返回一个函数
// 这正是redux-thunk的所用之处:异步action
// 上行代码相当于
/*dispatch((dispatch, getState) => {
dispatch({ type: 'SET_PAGE_TITLE', data: data })
)*/
},
/*setInfoList (data) {
dispatch(setInfoList(data))
}*/
}
}
class Test extends Component {
constructor(props) {
super(props)
console.log(this.props)
}
changeText() {
let { setPageTitle, setInfoList } = this.props
// 触发setPageTitle action
setPageTitle('新的标题')
}
render () {
// 从props中解构store
let { pageTitle, infoList } = this.props
// 使用store
return (
{pageTitle}
{
infoList.length > 0 ? (
{
infoList.map((item, index) => {
return (
- {item.data}
)
})
}
):null
}
)
}
componentDidMount () {
// let { setPageTitle, setInfoList } = this.props
// 触发setPageTitle action
// setPageTitle('新的标题')
// 触发setInfoList action
// setInfoList()
}
}
export default connect(mapStateToProps, mapDispatchToProps)(Test)
3、在Page2中引入该组件看效果
import React, { Component } from 'react';
import TestRedux from './TestRedux'
export default class Page2 extends Component{
constructor(props) {
super(props)
console.log(this.props.location.state.day)
}
componentWillMount() {
// console.log(global.$)
global.$.get({
url:'https://free-api.heweather.net/s6/weather/now?parameters',
success(res) {
console.log('成功',res)
},
error(error) {
console.log('错误',error)
}
})
}
render() {
return (
这是page2页面组件{this.props.location.state.day}
)
}
}