我正在尝试访问_id
客户端中的文档
这是我发布它的方式:
Meteor.publish('events', function () {
return Requests.find({}, {fields: {"_id": 1, 'start': 1, 'title': 1, 'reasons': 1}});
});
在客户端中,当我尝试console.log()
使用 id 时,我将“_fc4”打印到控制台
这是我的代码(在客户端):
eventClick: function(event, jsEvent, view) {
console.log(event._id);
}
event 是返回的文件。event.title
打印,event.start
或event.reasons
到控制台时,我得到了正确的值。但我_fc4
在尝试时得到event._id
。
我现在的问题是,如何_id
正确发布?
注意:尝试更改"_id"
并_id
在控制台中收到相同的结果