如何在React Native中要求flux Dispatcher

时间:2015-12-25 09:19:32

标签: react-native

在React中使用Dispatcher var Dispatcher = require('flux').Dispatcher;

如何在React Native中要求它?

1 个答案:

答案 0 :(得分:3)

在Dispatcher中的方式相同

var Dispatcher = require('flux').Dispatcher;

module.exports = new Dispatcher();

在您的商店

import AppDispatcher from '../dispatcher/AppDispatcher';

(相应地更改路径)