我正在尝试在“解析云代码”功能参数中发送一系列联系人电子邮件(字符串)。我正在这样做:

HashMap<String, ArrayList<String>> params = new HashMap<>();
ArrayList<String> array = new ArrayList<>();
array.add("contact email 1");
array.add("contact email 2");
array.add("contact email 3");

params.put("contacts", array);

ParseCloud.callFunctionInBackground("cloudFunctionName", params, new FunctionCallback<Object>() {
    @Override
    public void done(Object o, ParseException e) {
        // do something
    }
});


我在这里定义我的云函数:
contacts应该类似于:{"contacts" : ["contact email 1", "contact email 2", "contact email 3"]}。我遍历每封电子邮件,并对每封电子邮件执行一些逻辑。

var _ = require("underscore");

Parse.Cloud.define("cloudFunctionName", function (request, response) {
var contacts = request.params.contacts;

_.each(contacts, function(contactEmail) {
    var userQuery = Parse.Query(Parse.User);

    userQuery.equalTo("email", contactEmail);

    userQuery.first().then(
        function(user) {
            // there is a user with that email
        },
        function(error) {
            // no user found with that email
});


});

我得到的问题是,有时contactEmail是未定义的。

我收到错误:userQuery.equalTo(“ email”,contactEmail);行上的Result: TypeError: Cannot call method 'equalTo' of undefined

即使我写if(typeof contactEmail != "undefined") { userQuery.equalTo("email", contactEmail); },我仍然会收到错误。

我还要检查emailString是否为空,然后再将其添加到数组中?

我怎样才能解决这个问题?

最佳答案

更新您的JavaScript以创建用户查询,如下所示:

var userQuery = new Parse.Query(Parse.User);

07-26 02:21