ES 版本的 back4app 云代码功能问题
back4app cloud code functions problem with ES version
我使用 back4app 作为后端服务来部署我的应用程序,该应用程序是用 React Native ans JS 开发的。我现在正在测试如何使用 back4app 的 'Cloud Code Functions'...
由于我是 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");
我知道问题出在异步函数上,但我找不到任何解决方案。我做错了什么?
使用云代码时,您无需进行任何类型的初始化,因为它已在 Back4app 服务器上完成。
所以请在您的 main.js 文件中删除:
导入语句。第 2 行和第 3 行。
Parse初始化。第 6、8 和 10 行。
要真正回答问题,错误信息是误报!可能在线编辑器配置不正确,所以不小心显示了这些警告...
正如指南告诉您的那样,如果您有 运行 3.x 解析服务器,则可以使用 async
关键字。使用它应该是安全的,因为默认使用 Parse Server 4.x(可以通过 App Settings > Server Settings > Manage Parse Server 更改服务器)。
我使用 back4app 作为后端服务来部署我的应用程序,该应用程序是用 React Native ans JS 开发的。我现在正在测试如何使用 back4app 的 'Cloud Code Functions'...
由于我是 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");
我知道问题出在异步函数上,但我找不到任何解决方案。我做错了什么?
使用云代码时,您无需进行任何类型的初始化,因为它已在 Back4app 服务器上完成。
所以请在您的 main.js 文件中删除:
导入语句。第 2 行和第 3 行。
Parse初始化。第 6、8 和 10 行。
要真正回答问题,错误信息是误报!可能在线编辑器配置不正确,所以不小心显示了这些警告...
正如指南告诉您的那样,如果您有 运行 3.x 解析服务器,则可以使用 async
关键字。使用它应该是安全的,因为默认使用 Parse Server 4.x(可以通过 App Settings > Server Settings > Manage Parse Server 更改服务器)。