在React中使用Dispatcher
var Dispatcher = require('flux').Dispatcher;
如何在React Native中要求它?
答案 0 :(得分:3)
在Dispatcher中的方式相同
var Dispatcher = require('flux').Dispatcher;
module.exports = new Dispatcher();
在您的商店
import AppDispatcher from '../dispatcher/AppDispatcher';
(相应地更改路径)