import {Dispatcher} from 'flux';//引用storeimport Store from '../stores/TodoStore';const TodoDispatcher=new Dispatcher();TodoDispatcher.regeist(function(action){ 스위치(action.actionType) { case "ADD_TODO": Store.addTodoData(action.payload); Store.emitChange(); //调用store 기본값: //处理 break; }})기본 TodoDispatcher 내보내기;