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

react-redux基本使用

时间:2018-05-01 20:18:48      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:react   redux   基本使用   

  • 图解:
    技术分享图片
  • 代码:
    var createStore = require(‘redux‘).createStore
    var indexStore = createStore(function(state=0,action){
    switch(action.type){
        case 1:
            return ++state
        case 0:
            return --state
        default:
            return state
    }
    })
    indexStore.subscribe(function(){
    console.log(indexStore.getState())
    })
    indexStore.dispatch({type:1})
  • 效果:
    技术分享图片
  • react-redux基本使用

    标签:react   redux   基本使用   

    原文地址:http://blog.51cto.com/12173069/2110198

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