使用成功将对象添加到 Parse.Relation 后
1 this.topic.relation("friend").add(email);
2 this.topic.save();
我在Parse.Object._getSubclass requires a string argument
下面的第 1 行
1 renderAllFriends: function(collection, filter) {
2 this.topic.relation("friend").query().find({
3 success:function(emails) {
4 this.$("#friends-list").html("");
5 emails.each(this.renderOneFriend);
6 }
7 });
8 }
一切似乎都正确记录在 Mongo 中。需要注意的一点是,Email 对象是一个具有非强制性用户列的自定义类。
感谢您提供有关在哪里寻找答案的任何提示!Parse repo 在这方面没有太大帮助,因为 _getSubclass 对 Parse.Relation 也不例外(这很好)。
贡