是否可以将函数存储在 Meteor 的 MongoDB 集合中?
我试过用
const SchemaName = new SimpleSchema({
text: {
type: String,
},
transform: {
type: Function,
}
});
CollectionName.attachSchema(SchemaName);
并添加一个文档
CollectionName.insert({ text: "Some text", transform: function (value) { return value * 2; } });
但它似乎不起作用。
我能做些什么?