使用 autoForm/quickForm、returns Objects 而不是 html 形式
using autoForm/quickForm, returns Objects instead of an html form
我正在尝试使用 quickForm 表单 autoForm 从我的 collection
生成表单
<template name="NewRecipe">
<div class="new-recipe-container">
{{> quickForm collection="Recipes" id="insertRecipeForm" type="insert" class="new-recipe-form"}}
</div>
</template>
不是显示带有标签和输入字段和提交按钮的简单 table,而是 returns 是 objects 的数组,它们显示为
[object Object]
[object Object]
[object Object]
[object Object]
Submit
按钮呈现为按钮,但我的架构中的字段不是。
切换到旧版本,当前版本是1.5.0。需要使用1.4.3.
命令如下:
cd [to your project]
meteor npm install --save simpl-schema@1.4.3
首先卸载旧的 simpl-schema
meteor npm uninstall --save simpl-schema
然后将 simpl-schema 1.5.0 降级到 1.4.0
meteor npm install --save simpl-schema@1.4.3
对我有用。
我正在尝试使用 quickForm 表单 autoForm 从我的 collection
生成表单<template name="NewRecipe">
<div class="new-recipe-container">
{{> quickForm collection="Recipes" id="insertRecipeForm" type="insert" class="new-recipe-form"}}
</div>
</template>
不是显示带有标签和输入字段和提交按钮的简单 table,而是 returns 是 objects 的数组,它们显示为
[object Object]
[object Object]
[object Object]
[object Object]
Submit
按钮呈现为按钮,但我的架构中的字段不是。
切换到旧版本,当前版本是1.5.0。需要使用1.4.3.
命令如下:
cd [to your project]
meteor npm install --save simpl-schema@1.4.3
首先卸载旧的 simpl-schema
meteor npm uninstall --save simpl-schema
然后将 simpl-schema 1.5.0 降级到 1.4.0
meteor npm install --save simpl-schema@1.4.3
对我有用。