back4app云代码功能问题与ES版本
Posted
技术标签:
【中文标题】back4app云代码功能问题与ES版本【英文标题】:back4app cloud code functions problem with ES version 【发布时间】:2022-01-08 20:19:43 【问题描述】:我使用 back4app 作为后端服务来部署我的应用程序,它是用 React Native ans JS 开发的。我现在正在测试如何使用 back4app 的“云代码功能”...
由于我是 back4app 的初学者,我在使用他们的指南时发现了一个问题。我正面临这条消息错误:'async functions' is only available in ES8 (use 'esversion: 8').
:
Back4app 端:
import Parse from 'parse/react-native.js';
import AsyncStorage from '@react-native-async-storage/async-storage';
//Initializing the SDK
Parse.setAsyncStorage(AsyncStorage);
//Paste below the Back4App Application ID AND the javascript KEY
Parse.initialize('YOUR_APPLICATION_ID_HERE', 'YOUR_JAVASCRIPT_KEY_HERE');
//Point to Back4App Parse API address
Parse.serverURL = 'https://parseapi.back4app.com/';
//This is a hello function and will log a message on the console
Parse.Cloud.define("hello", async (request) =>
console.log("Hello from Cloud Code!");
return "Hello from Cloud Code!";
);
我的应用:
const helloFunction = await Parse.Cloud.run("hello");
我知道问题来自异步函数,但我找不到任何解决方案。我做错了什么?
【问题讨论】:
【参考方案1】:使用云代码时,您无需进行任何类型的初始化,因为它已经在 Back4app 服务器上完成。
所以请在你的 main.js 文件中删除:
导入语句。第 2 行和第 3 行。
解析初始化。第 6、8 和 10 行。
【讨论】:
谢谢你的回答,我已经考虑了你的观点,我确实更新了我的帖子..在那之后,代码中的问题是什么? 之后,代码应该可以工作了。你还在报错吗? 它不起作用,我收到此错误消息:back4app 端的“'async functions' is only available in ES8 (use esversion:8)” 您能否尝试通过 REST API 调用该云函数? docs.parseplatform.org/rest/guide/#calling-cloud-functions 调用的 URL 是 parseapi.back4app.com/functions/hello【参考方案2】:要真正回答问题,错误消息是误报!可能是在线编辑器配置不正确,所以不小心显示了这些警告……
正如指南告诉您的那样,如果您有一个正在运行的 3.x Parse Server,则可以使用 async
关键字。使用它应该是安全的,因为默认使用 Parse Server 4.x(可以通过 App Settings > Server Settings > Manage Parse Server 更改服务器)。
【讨论】:
以上是关于back4app云代码功能问题与ES版本的主要内容,如果未能解决你的问题,请参考以下文章
flutter 腾讯云 上传腾讯云cos 使用flutter1.12 1.17及以上版本 ios与flutter混合开发