我想使用javascript开发推送通知移动应用程序。我应该在哪里存储下面的代码是在cloude代码或我的js文件或两者?
Parse.Cloud.define("hello", function(request, response) {Parse.Push.send({ channels: ["blue"],data: {alert: "The Giants won against the Mets 2-3. Test"}}, { success: function() {response.success("Hello world!"); },error: function(error) { response.fail("Hello world!");}});});
答案 0 :(得分:0)
这取决于你的系统和设计。如果你去解析官方网站的Parse教程部分 你可以使用很多例子和教程。希望这会有所帮助。
问候。