gpt4 book ai didi

javascript - 从一个 Parse 应用程序在另一个 Parse 应用程序中调用 Cloud Call

转载 作者:行者123 更新时间:2023-11-28 01:05:54 26 4
gpt4 key购买 nike

我需要通过 Rest API 从另一个解析应用程序的云中调用一个解析应用程序中的云调用。

为此,我现在有了这段代码。但是,我总是收到错误:com.parse.ParseException:ReferenceError:XMLHttpRequest未在main.js:12:20处定义。 (这一行指的是初始化 XMLHttpRequest 的行)。我的代码是:

var url = "https://api.parse.com/1/functions/signUp";

var myObj = new Object();
myObj.age = 45;
myObj.email = "test@gmail.com";
myObj.password = "testpw";

var client = new XMLHttpRequest();
client.open("POST", url);
client.setRequestHeader("Content-Type", "text/plain;charset=UTF-8");
client.setRequestHeader("X-Parse-Application-Id", "xxx");
client.setRequestHeader("X-Parse-REST-API-Key", "xxx");
client.send(JSON.stringify(myObj));

由于此代码是在 Parse 云中执行的,因此我认为问题在于 XMLHttpRequest 的构造不正确。可能是这样吗?

这对于 Parse 来说是否可能,通过来自另一个解析应用程序的云端的 Rest-API 从解析应用程序调用云调用?

最佳答案

您可以使用Parse.Cloud.httpRequest()进行http调用

Parse.Cloud.httpRequest({
url: 'https://api.parse.com/...',
headers: {
'Content-Type':'application/json',
'X-Parse-Application-Id':'...',
'X-Parse-REST-API-Key':'...'
},
method: 'POST',
body: JSON.stringify(myObj)
}).then(function(response) {
console.log(response);
}, function(err) {
console.log(err);
});

试一试。回复:https://parse.com/docs/cloud_code_guide#networking

您可能可以跳过 JSON stringify 并仅传入 myObj。

关于javascript - 从一个 Parse 应用程序在另一个 Parse 应用程序中调用 Cloud Call,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25087949/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com