react-native reload 页面不刷新问题

或许你在react-native开发的过程中,会遇到一个很变态很恼火的问题,修改完代码后reload时页面不刷新。。。网上搜了下说改app_name\node_modules\react-native\node_modules\node-haste\lib\FileWatcher\index.js这个但是按照这个路径找根本找不到说node-haste,但是我却在app_name\node_modules\react-native\packager这个目录下找到了node-haste,然就是按照网上说的改代码了。

首先

// var MAX_WAIT_TIME = 120000;

varMAX_WAIT_TIME =360000;

然后找到_createWatcher(rootConfig)

_createWatcher(rootConfig) {

constwatcher=newWatcherClass(rootConfig.dir, {

glob: rootConfig.globs,

dot:false,

});

return newPromise((resolve, reject) => {

constrejectTimeout=setTimeout(

() => reject(newError([

'Watcher took too long to load',

'Try running `watchman version` from your terminal',

'https://facebook.github.io/watchman/docs/troubleshooting.html',

].join('\n'))),   //修改的地方

MAX_WAIT_TIME

);

watcher.once('ready', () => {

clearTimeout(rejectTimeout);

resolve(watcher);

});

});

}

改完后重新加载了项目确实可以了,希望对小伙伴们有用!

你可能感兴趣的:(react-native reload 页面不刷新问题)