如何在React Native Expo(生产)中实现重新加载应用程序

alb*_*oxs 7 javascript android reload react-native expo

我尝试使用react-native-restart创建重新启动,但是在调用RNRestart.Restart()时出现错误:

[未处理的承诺拒绝:TypeError:null不是对象(评估'_reactNativeRestart.default.Restart')]

如何在生产中实现重新加载?

ps我用的是expo

小智 12

您可以使用expo-updatesexpo install expo-updates只需使用 reloadAsync 方法运行并重新启动应用程序

import * as Updates from 'expo-updates';
Updates.reloadAsync()
Run Code Online (Sandbox Code Playgroud)