创建安装对象从云code。与解析 [英] Create Installation object from Cloud code with Parse

查看:99
本文介绍了创建安装对象从云code。与解析的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

由于文件说 - 中的JavaScript SDK目前不支持修改安装的对象。,但有关创建这些对象是什么?是有可能从云code创建安装对象?

As documentation says - "The JavaScript SDK does not currently support modifying Installation objects.", but what about creating these objects? is it possible to create Installation objects from cloud code?

有关例如:

Parse.Cloud.define("registerForNotifications", function(request,response) {

var token = request.params.deviceToken;
var deviceType = request.params.deviceType;
var user = request.user;

var installation = new Parse.Object("Installation");
if (installation) {
    installation.set("deviceToken",token);
    ... so on..
    installation.save();
}
});

将这项工作?谢谢你。

Will this work? Thank you.

推荐答案

一些示例:

//The following Cloud Function expects two parameters: the channel to be added to this user's installations, and the object id for the user.

//It assumes that each installation has a `Pointer <_User>` back to the original user.


//...
Parse.Cloud.define("subscribeToChannel", function(request, response) {
  var channelName = request.params.channel;
  var userId = request.params.userId;

  if (!channelName) {
    response.error("Missing parameter: channel")
    return;
  }

  if (!userId) {
    response.error("Missing parameter: userId")
    return;
  }

  // Create a Pointer to this user based on their object id
  var user = new Parse.User();
  user.id = userId;

  // Need the Master Key to update Installations
  Parse.Cloud.useMasterKey();

  // A user might have more than one Installation
  var query = new Parse.Query(Parse.Installation);
  query.equalTo("user", user); // Match Installations with a pointer to this User
  query.find({
    success: function(installations) {
      for (var i = 0; i < installations.length; ++i) {
        // Add the channel to all the installations for this user
        installations[i].addUnique("channels", channel);
      }

      // Save all the installations
      Parse.Object.saveAll(installations, {
        success: function(installations) {
          // All the installations were saved.
          response.success("All the installations were updated with this channel.");
        },
        error: function(error) {
          // An error occurred while saving one of the objects.
          console.error(error);
          response.error("An error occurred while updating this user's installations.")
        },
      });
    },
    error: function(error) {
      console.error(error);
      response.error("An error occurred while looking up this user's installations.")
    }
  });
});

这篇关于创建安装对象从云code。与解析的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆