在afterSave Cloud Code功能中如下:
Parse.Cloud.afterSave("Post", function (request) {
var post = request.object;
if (post.has('author')) {
var author = post.get('author');
// author is a Link to a specific Parse.User
}
}
我正在尝试收到Post的作者字段指向的Parse用户的电子邮件。
在上面的示例中,author
最终包含以下内容:
{
"__type":"Pointer",
"className":"_User",
"objectId":"413wgL9vf1"
}
基本上,我想读取指针所指向的用户的email
属性。
我尝试做author.get('email')
但失败了,说“未定义”。电子邮件在数据库中设置。
这样做的正确方法是什么?我应该使用链接中的objectId编写针对User类的查询,还是有更简单的方法?
答案 0 :(得分:0)
原来我需要做的就是author.fetch().then(...)
。