react native reload没有变化的解决办法:1、找到“app_name\node_modules\react-native\packager”目录;2、设置“varmax_wait_time =360000;”;3、找到“_createwatcher(rootconfig)”,并修改“join('\n')))”内容;4、重新加载项目即可。
本教程操作环境:windows10系统、react18.0.0版、dell g3电脑。
react native reload 没有变化怎么办?
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); }); }); }
改完后重新加载了项目确实可以了,希望对小伙伴们有用!