这篇文章主要介绍“怎么在React项目中使用Redux”,在日常操作中,相信很多人在怎么在React项目中使用Redux问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”怎么在React项目中使用Redux”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

首先我们会用到哪些框架和工具呢?ReactUI框架Redux状态管理工具,与React没有任何关系,其他UI框架也可以使用Reduxreact-reduxReact插件,作用:方便在React项目中使用Reduxreact-thunk中间件,作用:支持异步action

|--src|--storeRedux目录|--actions.js|--index.js|--reducers.js|--state.js|--components   组件目录|--Test.jsx|--App.js项目入口

准备工作第1步:提供默认值,既然用Redux来管理数据,那么数据就一定要有默认值,所以我们将state的默认值统一放置在state.js文件:

//state.js//声明默认值//这里我们列举两个示例//同步数据:pageTitle//异步数据:infoList(将来用异步接口获取)exportdefault{pageTitle:'首页',infoList:[]}

第2步:创建reducer,它就是将来真正要用到的数据,我们将其统一放置在reducers.js文件

//reducers.js//工具函数,用于组织多个reducer,并返回reducer集合import{combineReducers}from'redux'//默认值importdefaultStatefrom'./state.js'//一个reducer就是一个函数functionpageTitle(state=defaultState.pageTitle,action){//不同的action有不同的处理逻辑switch(action.type){case'SET_PAGE_TITLE':returnaction.datadefault:returnstate}}functioninfoList(state=defaultState.infoList,action){switch(action.type){case'SET_INFO_LIST':returnaction.datadefault:returnstate}}//导出所有reducerexportdefaultcombineReducers({pageTitle,infoList//欢迎加入全栈开发交流圈一起学习交流:864305860})//面向1-3年前端人员//帮助突破技术瓶颈,提升思维能力

第3步:创建action,现在我们已经创建了reducer,但是还没有对应的action来操作它们,所以接下来就来编写action

//actions.js//action也是函数exportfunctionsetPageTitle(data){return(dispatch,getState)=>{dispatch({type:'SET_PAGE_TITLE',data:data})}}exportfunctionsetInfoList(data){return(dispatch,getState)=>{//使用fetch实现异步请求window.fetch('/api/getInfoList',{method:'GET',headers:{'Content-Type':'application/json'}}).then(res=>{returnres.json()}).then(data=>{let{code,data}=dataif(code===0){dispatch({type:'SET_INFO_LIST',data:data})}})}}

最后一步:创建store实例

//index.js//applyMiddleware:redux通过该函数来使用中间件//createStore:用于创建store实例import{applyMiddleware,createStore}from'redux'//中间件,作用:如果不使用该中间件,当我们dispatch一个action时,需要给dispatch函数传入action对象;但如果我们使用了这个中间件,那么就可以传入一个函数,这个函数接收两个参数:dispatch和getState。这个dispatch可以在将来的异步请求完成后使用,对于异步action很有用importthunkfrom'redux-thunk'//引入reducerimportreducersfrom'./reducers.js'//创建store实例letstore=createStore(reducers,applyMiddleware(thunk))exportdefaultstore

至此,我们已经完成了所有使用Redux的准备工作,接下来就在React组件中使用Redux

开始使用首先,我们来编写应用的入口文件APP.js

//App.jsimportReactfrom'react'importReactDOMfrom'react-dom'//引入组件importTestComponentfrom'./components/Test.jsx'//Provider是react-redux两个核心工具之一,作用:将store传递到每个项目中的组件中//第二个工具是connect,稍后会作介绍import{Provider}from'react-redux'//引入创建好的store实例importstorefrom'@/store/index.js'//渲染DOMReactDOM.render((<div>{/*将store作为prop传入,即可使应用中的所有组件使用store*/}<Providerstore={store}><TestComponent/></Provider></div>),document.getElementById('root'))

最后是我们的组件:Test.jsx

//Test.jsximportReact,{Component}from'react'//connect方法的作用:将额外的props传递给组件,并返回新的组件,组件在该过程中不会受到影响import{connect}from'react-redux'//引入actionimport{setPageTitle,setInfoList}from'../store/actions.js'classTestextendsComponent{constructor(props){super(props)}componentDidMount(){let{setPageTitle,setInfoList}=this.props//触发setPageTitleactionsetPageTitle('新的标题')//触发setInfoListactionsetInfoList()}render(){//从props中解构storelet{pageTitle,infoList}=this.props//使用storereturn(<div><h2>{pageTitle}</h2>{infoList.length>0?(<ul>{infoList.map((item,index)=>{<li>{item.data}</li>})}</ul>):null}</div>)}}//mapStateToProps:将state映射到组件的props中constmapStateToProps=(state)=>{return{pageTitle:state.pageTitle,infoList:state.infoList}}//mapDispatchToProps:将dispatch映射到组件的props中constmapDispatchToProps=(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))}}}exportdefaultconnect(mapStateToProps,mapDispatchToProps)(Test)

到此,关于“怎么在React项目中使用Redux”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注亿速云网站,小编会继续努力为大家带来更多实用的文章!