此Meteor代码正在尝试向选定的文档添加新属性但未通过。不知道为什么?感谢
DisplayCol.update({userId: Meteor.userId(), action: 'act1'}, {$set: {'prop1': true}});
答案 0 :(得分:0)
尝试以下示例的方式:
// return array of my messages
var myMessages = Messages.find({userId: Session.get('myUserId')}).fetch();
// create a new message
Messages.insert({text: "Hello, world!"});
// mark my first message as "important"
Messages.update(myMessages[0]._id, {$set: {important: true}});