深入浅出Redux系列

4-Actions

2020-01-29  本文已影响0人  钢笔先生

Time: 20200129

Actions

动作是应用和store交互的唯一方式。

app -- actions --> store

一般来说,我们会约定action有一个type字段,内容是一个字符串。

截屏2020-01-29下午1.41.03.png

代码演示

// console.log("From index.js")
const BUY_CAKE = 'BUY_CAKE'

// action creator
function buyCake(params) {
    action = {
        type: BUY_CAKE,
        info: 'first redux action',
    }
    return action
}

END.

上一篇 下一篇

猜你喜欢

热点阅读