如何在流星中从MongoDB生成表单

时间:2021-07-15 16:52:22

I want to generate a form from the Mongo Db entry in meteor

我想从meteor中的Mongo Db条目生成一个表单

The DB entry contains the following parameters:

DB条目包含以下参数:

TemplateForm : [
                Template_Name: {type :String
                                Size : 20 
                               }
                Template_Date :{type : Date
                                Size : 8
                               }
]

1 个解决方案

#1


Combine autoform with simple-schema.

将autoform与简单模式相结合。

You'll be able to create a schema like this:

您将能够创建这样的架构:

TemplateSchema = new SimpleSchema({
  ...
  'Name': {
    type: String,
    max: 20
  },
  ...
});

And then generate it automatically with autoform.

然后使用autoform自动生成它。

#1


Combine autoform with simple-schema.

将autoform与简单模式相结合。

You'll be able to create a schema like this:

您将能够创建这样的架构:

TemplateSchema = new SimpleSchema({
  ...
  'Name': {
    type: String,
    max: 20
  },
  ...
});

And then generate it automatically with autoform.

然后使用autoform自动生成它。