Files
freeCodeCamp/guide/chinese/certifications/front-end-libraries/redux/dispatch-an-action-event/index.md
2018-10-16 21:32:40 +05:30

12 lines
250 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Dispatch an Action Event
localeTitle: 派遣行动事件
---
## 派遣行动事件
通过调用dispatch方法将LOGIN操作发送到Redux存储并传入`loginAction()`创建的操作。
```react.js
store.dispatch(loginAction());
```