Skip to content

Commit c3bea33

Browse files
authored
u
1 parent d49101e commit c3bea33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

en-us/concepts/01-basic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ console.log(app._store); // top state
2323

2424
`type AsyncAction = any`
2525

26-
Just like Redux's Action, in dva, action is a plain object that represents an intention to change the state. Actions are the only way to get data into the store. Any data, whether from UI events, network callbacks, or other sources such as WebSockets needs to eventually be dispatched as actions.action.(ps:Ps:dispatch is realized trhough props by connecting components.)
26+
Just like Redux's Action, in dva, action is a plain object that represents an intention to change the state. Actions are the only way to get data into the store. Any data, whether from UI events, network callbacks, or other sources such as WebSockets needs to eventually be dispatched as actions.action.(ps:dispatch is realized trhough props by connecting components.)
2727

2828
```javascript
2929
dispatch({

0 commit comments

Comments
 (0)