是否可以在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; } });
但它似乎无法发挥作用。
我该怎么办?
答案 0 :(得分:1)
我将函数保存为类型“String”,然后在加载过程中,我使用eval
或new Function()
将其转换为函数。 Function
不是SimpleScheme