1

我有一个系统,当当前用户接受请求时,我的应用程序会在将请求发送给当前用户的用户之间添加一个关系。

但是,我还希望将当前用户添加到其他用户的关系中,这样不仅仅是当前用户有关系。

我的当前用户代码有效,但不适用于其他用户。

    //i use this pattern to add the requester to a friends relation to the current user 
    var relation = PFUser.currentUser()!.relationForKey("Friends")
    relation.addObject(passenger as PFObject)
    PFUser.currentUser()!.saveInBackground()

当我为乘客尝试相同的模式时,它不会添加关系

      var relation = passenger.relationForKey("Friends")
      relation.addObject(PFUser.currentUser()!.self as PFObject)
      passenger.saveInBackground()

编辑1:

经过大量研究,我发现这个答案说我需要云代码。https://stackoverflow.com/a/23305056/3822504这是唯一的方法还是有替代方法?有人可以提供云代码解决方案吗?

编辑2:

我回答了我自己的问题。您将需要根据需要编辑云代码。帮助我最大的事情是知道如何在云代码中查询用户类并在云代码中获取当前用户。

4

2 回答 2

0

这是唯一的方法,afaik。如果您还没有,请按照本指南设置您的云代码环境:https ://parse.com/apps/quickstart#cloud_code/unix

然后您应该定义一个函数(设置后的代码将包含一个示例“hello world”函数,因此您可以从中复制定义)。对于关系修改,您应该参考他们的 JS api 文档 - https://parse.com/docs/js/api/symbols/Parse.Relation.html

(注意:为了让它工作,它应该在你尝试修改用户之前包含 Parse.Cloud.useMasterKey() 行)

在您的功能实现并部署云代码(解析 部署)后,在您的移动应用程序中使用 PFCloud.callFunctionInBackground。

于 2015-09-06T06:48:34.587 回答
0

好的,过了一会儿,我能够为我的场景找到解决方案。当用户接受另一个用户时,这应该适用于简单的关系。

首先是我的快速代码。需要注意的是,我创建了一个以 PFUser 作为参数的函数。我这样做是为了重构一个更大的函数。这个用户就是我们要在云代码中保存当前用户的用户。

func createRelation(otherUser: PFUser)
{

    let fromUser: PFUser = otherUser
    let params = NSMutableDictionary()
    params.setObject(fromUser.objectId!, forKey: "Friends")


    PFCloud.callFunctionInBackground("addFriendToFriendsRelation", withParameters: params as [NSObject : AnyObject] ) {
        (object:AnyObject?, error: NSError?) -> Void in

        //add the person who sent the request as a friend of the current user
        let friendsRelation: PFRelation = self.currentUser!.relationForKey("Friends")
        friendsRelation.addObject(fromUser)
        self.currentUser!.saveInBackgroundWithBlock({
            (succeeded: Bool, error: NSError?) -> Void in

            if succeeded {
                println("Relation added to the current user")


            } else {

                println("Handle error in adding relation to current user ")
            }
        })
    }

}

现在解析云代码

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

    Parse.Cloud.useMasterKey();
    //get the friend requestId from params
    var friendRequestId = request.params.Friends;
    var query = new Parse.Query(Parse.User);

    //get the friend request object
    query.get(friendRequestId, {
        success: function(friendRequest) {

            //get the user the request was from
            var fromUser = friendRequest;
            //get the user the request is to
            var toUser = Parse.User.current() ;

            var relation = fromUser.relation("Friends");
            //add the user the request was to (the accepting user) to the fromUsers friends
            relation.add(toUser);

            //save the fromUser
            fromUser.save(null, {

                success: function() {

                     response.success("saved relation and updated friendRequest");

                },

                error: function(error) {

                response.error(error);

                }

            });

        },

        error: function(error) {

            response.error(error);
        }

    });

});

此外,请确保您使用parse deployparse 目录中的命令来更新 main.js

于 2015-09-07T01:50:38.480 回答