在使用"标准"时,我无法获取用于查询用户的云代码功能...
如果我定义了该功能(如下所示),它可以正常工作......
Parse.Cloud.define("findUser1", function(request, response){
Parse.Cloud.useMasterKey();
var query = new Parse.Query(Parse.User);
query.equalTo("objectId", "2FSYI1hoJ8"); // "2FSYI1hoJ8" is the objectId of the User I am looking for
query.first({
success: function(user){
response.success(user);
},
error: function(error) {
console.error(error);
response.error("An error occured while lookup the users objectid");
}
});
});
在此版本中,将调用该函数,但其中的查询不会......
function findThisUser(theObject){
console.log("findThisUser has fired... " + theObject); //confirms "theObject" has been passed in
Parse.Cloud.useMasterKey();
var query = new Parse.Query(Parse.User);
query.equalTo("objectId", "2FSYI1hoJ8"); // "2FSYI1hoJ8" is the value of "theObject", just hard coded for testing
query.first({
success: function(users){
console.log("the user is... " + users);
// do needed functionality here
},
error: function(error) {
console.error(error);
}
});
};
云代码不允许全局变量,我也看不到如何将变量传递给"定义的"来自另一个人的功能。这是至关重要的,因为必须调用外部函数才能在返回的用户上运行所需的任务。 (这发生在其他地方,并且必须在其他所有事情发生之后发生。这是确认,并且应该被其他功能使用)迄今为止发现的所有潜在信息都没有帮助,并且我在服务器端javascript中的唯一体验是我从其他云代码拼凑而成的......
关于我失踪的任何想法?
答案 0 :(得分:1)
这个链接可能会有所帮助,我昨天和移动代码后有类似的问题,并且有了response.success(用户);在我的功能中一切正常。
Parse Cloud Code retrieving a user with objectId
不是您的确切问题 - 但这可能有所帮助。
Heres是我现在使用的代码:
Parse.Cloud.define("getUserById", function (request, response) {
//Example where an objectId is passed to a cloud function.
var id = request.params.objectId;
Parse.Cloud.useMasterKey();
var query = new Parse.Query(Parse.User);
query.equalTo("ObjectId", id);
query.first(
{
success: function(res) {
response.success(res);
},
error: function(err) {
response.error(err);
}
});
});