text 清除React Native Project的缓存

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 清除React Native Project的缓存相关的知识,希望对你有一定的参考价值。

RN < 0.50 - watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf node_modules/ && npm cache clean && npm install && npm start -- --reset-cache
RN >= 0.50 -  watchman watch-del-all && rm -rf $TMPDIR/react-native-packager-cache-* && rm -rf $TMPDIR/metro-bundler-cache-* && rm -rf node_modules/ && npm cache clean && npm install && npm start -- --reset-cache

npm >= 5 - watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf node_modules/ && npm cache verify && npm install && npm start -- --reset-cache

Windows - del %appdata%\Temp\react-native-* & cd android & gradlew clean & cd .. & del node_modules/ & npm cache clean --force & npm install & npm start -- --reset-cache
// short
del %appdata%\Temp\react-native-* & cd android & gradlew clean

以上是关于text 清除React Native Project的缓存的主要内容,如果未能解决你的问题,请参考以下文章

ScrollView 在 React Native 中删除 TextInput 键盘

使用 react-native-gesture-handler 时出错

React Native - 无法清除超时

React Native - 在接收本地推送通知时清除以前的推送通知

React-Native清除缓存汇总

React-Native清除缓存汇总