使用云代码解析推送通知语言

时间:2014-10-02 14:30:32

标签: ios push-notification parse-platform cloud-code

我的应用需要双语(英语和意大利语)。我正在通过云代码处理推送通知,并且我尝试根据客户端语言发送不同的通知。我在Installation表中创建了一个语言字段并保存到它 [[NSLocale preferredLanguages] objectAtIndex:0];。下面的代码有效,但我想知道是否有另一种方法可以做到这一点。我宁愿设置"警报"查询之前的消息,以便我只有1个查询。基本上我需要检查该特定用户的语言字段是否为"它"或不,然后进行查询。是可能还是我的唯一解决方案?

//push test
Parse.Cloud.afterSave("MeetingObject", function(request) {
// user owner of the meeting object
var user = request.object.get("user");

var pushQueryEn = new Parse.Query(Parse.Installation);  
pushQueryEn.equalTo("user", user);
pushQueryEn.notEqualTo("language", 'it');
Parse.Push.send({
    where: pushQueryEn,
    data: {
        alert: "English push test",
        badge: "Increment",
        sound: "cheering.caf",
    }
}, {
    success: function() {
        // Push was successful
        console.log(request.object.get("language"));
    },
    error: function(error) {
        console.error("Got an error " + error.code + " : " + error.message);
    }
});

var pushQueryIt = new Parse.Query(Parse.Installation);  
pushQueryIt.equalTo("user", user);
pushQueryIt.equalTo("language", 'it');
Parse.Push.send({
    where: pushQueryIt,
    data: {
        alert: "Italian push test",
        badge: "Increment",
        sound: "cheering.caf",
    }
}, {
    success: function() {
        // Push was successful
        console.log(request.object.get("language"));
    },
    error: function(error) {
        console.error("Got an error " + error.code + " : " + error.message);
    }
});
});

1 个答案:

答案 0 :(得分:1)

是的,有。您必须直接设置推送通知有效内容的aps字典,并使用loc-key和可选的loc-argsaction-loc-key参数。在第一个参数中,您传递已在应用程序包中的Localizable.strings文件中本地化的消息的本地化密钥。在第二个参数中,您可以传递一个数组,该数组将替换为本地化消息中的字符串占位符。第三个参数将用作默认操作的名称("滑动到...")

例如,您在Localizable.stings文件中定义以下密钥:

"msg" = "%@ wants to send you a message";
"rsp" = "respond";

在云代码中,您可以按如下方式构建推送有效负载:

var payload = 
  "data":{  
    "aps":{  
       "alert":{  
          "loc-key":"msg",
          "loc-args":["John"],
          "action-loc-key":"rsp"
       },
    }
  };
// set at least the 'where' key of the payload
Parse.Push.send(payload);

此代码应该向您显示&#34; John想要向您发送消息&#34;,本地化为用户的当前区域设置,默认操作将是&#34;滑动以响应...&#34; < / p>