1
我有以下代碼:我可以在Meteor的MongoDB中存儲JavaScript Map對象嗎?
myMapField = new Map();
for (var i = stuff.length; i--;) {
myMapField.set(stuff.id, { name: stuff.name, type: Types.MY_TYPE });
}
Meteor.users.update(Meteor.userId(), {
$set: { 'profile.myMapField': myMapField }
});
它不工作和錯誤消息沒有幫助(「未定義」)。
有沒有辦法在Meteor的MongoDB中存儲JavaScript Map對象?