import {Dispatcher} from 'flux';//引用storeimport Store from '../stores/TodoStore';const TodoDispatcher=new Dispatcher();TodoDispatcher.regeist(function(action){ switch (action.actionType) { case "ADD_TODO": Store.addTodoData(action.payload); Store.emitChange(); //调用store break; default: //其他处理 break; }})export default TodoDispatcher;
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号