我有两个班;议程和活动。多个事件可以属于一个议程对象,并且只能读取以保护这些对象。 Alle用户可以创建应指向某个议程对象的事件。

在活动中,我有一列称为议程的议程,它是指向议程的指针。

如果我尝试这样做:

var vetEvent = new Parse.Object("Events");
    vetEvent.set('user', Parse.User.current());
    vetEvent.set('type', 'unsubscribe');
    vetEvent.set('agenda', agenda);
    vetEvent.save().then(function(result){
        console.log(result);
    },function(error){
        console.log(error);
    });


结果是:

[{"error":{"code":119,"error":"This user is not allowed to perform the update operation on Agenda. You can change this setting in the Data Browser."}}]


实现此目标的最佳方法是什么?

最佳答案

看来您的事件类级别权限设置不正确。在类级别权限中添加用户列指针,并确保其具有创建/更新/删除权限集。

09-17 02:29