作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我最近升级到 Expo SDK 43。
我现在收到此错误:
抛出它的代码行是:
if (!RCTAsyncStorage.multiMerge) {
我使用的是最新版本的 AsyncStorage。
const auth = () => {};
const analytics = () => {};
export default { auth, analytics };
但是当我使用 firebase-js-sdk 函数时,我收到了上述消息。
let auth = initializeAuth(config, {
persistence: getReactNativePersistence(AsyncStorage),
});
//let auth = getAuth(config);
let analytics = getAnalytics(config);
export default { auth, analytics };
最佳答案
您可以通过添加可选链接(问号“?”)来避免该特定错误:
if (!RCTAsyncStorage?.multiMerge) {
它将短路到
undefined
(从而使 if
false
)而不是在尝试 checkin 空对象时抛出错误。
RCTAsyncStorage
将为空,你必须检查你第一次获取/声明它的位置,并回溯到它没有加载的点,也许你正在使用与 firebase-js-sdk 冲突的东西。
multiMerge
正如
docs 中提到的那样,可能并不总是被支持。 :
multiMerge
[...] NOTE: This is not supported by all native implementations.
关于javascript - null 不是对象(评估 'RCTAsyncStorage.multiMerge' ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70140535/
我最近升级到 Expo SDK 43。 我现在收到此错误: 抛出它的代码行是: if (!RCTAsyncStorage.multiMerge) { 我使用的是最新版本的 AsyncStorage。
我在此处遇到了与 react-native-asyncstorage 相关的问题: https://facebook.github.io/react-native/docs/asyncstorage.
我是一名优秀的程序员,十分优秀!