0

是否可以将函数存储在 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; } });

但它似乎不起作用。

我能做些什么?

4

1 回答 1

1

我将函数保存为“String”类型,然后在加载过程中,使用evalor将其转换为函数new Function()Function不是类型SimpleScheme

于 2016-01-19T03:49:00.373 回答