【发布时间】:2020-02-03 02:56:48
【问题描述】:
我正在尝试跟随世博会的in app purchases documentation.。我有 android 开发者帐户,并在该帐户上为同一个应用程序设置了我的应用程序内购买。我只是想开始使用文档并立即收到错误。
如果您查看文档,我只是想输入第一个示例中的内容。我在我的应用程序的渲染方法的开头调用了这个函数。
import * as InAppPurchases from 'expo-in-app-purchases';
...
const getHistory = async function(){
const history = await connectAsync();
if (history.responseCode === IAPResponseCode.OK) {
history.results.forEach(result => {
console.log(result)
});
}
}
我收到这些错误
[Unhandled promise rejection: ReferenceError: Can't find variable: connectAsync]
* App.js:57:19 in getHistory
- node_modules/regenerator-runtime/runtime.js:45:44 in tryCatch
- node_modules/regenerator-runtime/runtime.js:271:30 in invoke
- node_modules/regenerator-runtime/runtime.js:45:44 in tryCatch
- node_modules/regenerator-runtime/runtime.js:135:28 in invoke
- node_modules/regenerator-runtime/runtime.js:170:17 in Promise$argument_0
- node_modules/promise/setimmediate/core.js:45:7 in tryCallTwo
...
【问题讨论】:
标签: android reactjs react-native in-app-purchase expo