码迷,mamicode.com
首页 > 其他好文 > 详细

Redux

时间:2018-07-03 23:49:55      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:dispatch   .com   ons   中间   current   lis   ntb   调试   save   

 

 

1.redux:

 

function reducer(state=-,action)

{

   switch(action.type)

   {

         case ‘‘:

           return ...

         case ‘‘:

           return ...

         default:

           return ...

    }

}

 

const store = createStore(reducer)

 

function listener(){

      const current = store.getState()

      console.log(current);

}

 

 

store.subscribe(listener)

 

store.dispatch({type:‘...‘})

 

 

2.redux配合react一起使用:

 

index.js

 

function render()

{

    ReactDom.render(<App store={store}/>,document.getElementById(‘root‘))

}

 

store.subscribe(render)

 

App.js: 里面是组件和store

 

index.reducer.js 里面是reducer 和 actioncreator

 

3.使用redux-thunk让redux处理异步:

 

一.安装redux-thunk

二.使用applyMiddleware开启thunk中间件

三.Action可以返回函数,使用dispatch提交action

 

首先开启中间件:

技术分享图片

 

引入thunk:

技术分享图片

 

然后创建store

技术分享图片

 

技术分享图片

 

调试工具:

 

技术分享图片

 

 

4.使用react-redux:

 

npm install react-redux –save

忘记subscribe,只使用reducer、action、和dispatch

 

·Provier组件在应用最外层,传入store即可,只用一次

·Connect负责从外部获取组建需要的参数

 

index.js:

技术分享图片

 

App.js(这是一个组件)

技术分享图片

 

*用装饰器的方式书写:

技术分享图片

 

技术分享图片

 

Redux

标签:dispatch   .com   ons   中间   current   lis   ntb   调试   save   

原文地址:https://www.cnblogs.com/eret9616/p/9261033.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!