其实我是一个安卓原生开发者。我是 React-Native 的新手。在 Java 中,我将用户数据和其他数据保存在 Singleton 类中,并从其他活动访问。然后我如何在 React Native 中实现这个过程以访问来自其他组件的数据或 React Native 中单例的任何替代方案。
我只是尝试这个,但我收到了类似 getInstance() 未定义的错误。
class AppDelegate {
log = "This is AppDelegate";
static myInstance = null;
static getInstance() {
if (AppDelegate.myInstance == null) {
AppDelegate.myInstance = new AppDelegate();
}
return this.myInstance;
}
}
谢谢你。