freeCodeCamp/curriculum/challenges/chinese/03-front-end-libraries/redux/define-an-action-creator.ch...

1.6 KiB
Raw Blame History

id title challengeType isRequired videoUrl localeTitle
5a24c314108439a4d403614e Define an Action Creator 6 false 定义一个Action Creator

Description

创建操作后下一步是将操作发送到Redux存储以便它可以更新其状态。在Redux中您可以定义动作创建器来完成此任务。动作创建者只是一个返回动作的JavaScript函数。换句话说动作创建者创建表示动作事件的对象。

Instructions

定义一个名为actionCreator()的函数,该函数在调用时返回action对象。

Tests

tests:
  - text: 函数<code>actionCreator</code>应该存在。
    testString: 'assert(typeof actionCreator === "function", "The function <code>actionCreator</code> should exist.");'
  - text: 运行<code>actionCreator</code>函数应该返回操作对象。
    testString: 'assert(typeof action === "object", "Running the <code>actionCreator</code> function should return the action object.");'
  - text: 返回的操作应具有值为<code>LOGIN</code>的键属性类型。
    testString: 'assert(action.type === "LOGIN", "The returned action should have a key property type with value <code>LOGIN</code>.");'

Challenge Seed

const action = {
  type: 'LOGIN'
}
// Define an action creator here:

Solution

// solution required