diff --git a/Ch07/react-flux-introduction.md b/Ch07/react-flux-introduction.md index 7757aa3..41c2519 100644 --- a/Ch07/react-flux-introduction.md +++ b/Ch07/react-flux-introduction.md @@ -142,7 +142,7 @@ ReactDOM.render(, document.getElementById('app')); export const ADD_TODO = 'ADD_TODO'; ``` -在這個範例中我們繼承了 Facebook 提供的 Dispatcher API(主要是繼承了 `dispatch`、`register` 和 `subscribe` 的方法),打造自己的 DispatcherClass,當使用者觸發 `handleAction()` 會 `dispatch` 出事件。以下是 `src/dispatch/AppDispatcher.js`: +在這個範例中我們繼承了 Facebook 提供的 Dispatcher API(主要是繼承了 `dispatch`、`register` 和 `subscribe` 的方法),打造自己的 DispatcherClass,當使用者觸發 `handleAction()` 會 `dispatch` 出事件。以下是 `src/dispatcher/AppDispatcher.js`: ```javascript // Todo app dispatcher with actions responding to both diff --git a/Ch07/react-redux-real-world-example.md b/Ch07/react-redux-real-world-example.md index 2b7c3b2..ca20bba 100644 --- a/Ch07/react-redux-real-world-example.md +++ b/Ch07/react-redux-real-world-example.md @@ -3,7 +3,7 @@ ## 前言 上一節我們了解了 Redux 基本的概念和特性後,本章我們要實際動手用 Redux、React Redux 結合 ImmutableJS 開發一個簡單的 Todo 應用。話不多說,那就讓讓我們開始吧! -以下這張圖表示了整個 React Redux App 的資料流程圖(使用者與 View 互動 => dispatch 出 Action => Reducers 依據 action tyoe 分配到對應處理方式,回傳新的 state => 透過 React Redux 傳送給 React,React 重新繪製 View): +以下這張圖表示了整個 React Redux App 的資料流程圖(使用者與 View 互動 => dispatch 出 Action => Reducers 依據 action type 分配到對應處理方式,回傳新的 state => 透過 React Redux 傳送給 React,React 重新繪製 View): ![React Redux](./images/redux-flow.png "React Redux")