尝试使用Parse with React Native并使用Back4App作为我的BaaS。在设置我的asyncstorage(从React Native)时遇到问题。
Parse.setAsyncStorage(AsyncStorage);
//Paste below the Back4App Application ID AND the JavaScript KEY
Parse.initialize('myappid', 'sdk');
//Point to Back4App Parse API address
Parse.serverURL = 'https://parseapi.back4app.com/';
这是我尝试运行的初始化代码。不幸的是,我遇到了以下错误:
App.js:14 Uncaught TypeError:
parse_react_native__WEBPACK_IMPORTED_MODULE_5___default.a.setAsyncStorage is not a function
尝试不同版本的解析,不同的导入,不同的存储,都没有效果。
import AsyncStorage from '@react-native-async-storage/async-storage';
import Parse from 'parse/react-native';
其他信息:我有另一个项目工作,但它是运行博览会40和解析2.19与异步存储1.17.9。这个项目是运行博览会46和解析3.4.3与异步存储1.17.10。
我想使用expo 46的附加特性。我试着降级到相同版本的解析和异步存储,但没有任何成功。
1条答案
按热度按时间xjreopfe1#
通常,在Xcode中在
pod install
之后重建项目会有所帮助--在本例中必须运行pod install
,对吗?