使用autoForm / quickForm,返回Objects而不是html表单

时间:2018-05-24 12:38:25

标签: meteor-autoform

我正在尝试使用quickForm表单autoForm从我的集合中生成表单

<template name="NewRecipe">
    <div class="new-recipe-container">
        {{> quickForm collection="Recipes" id="insertRecipeForm" type="insert" class="new-recipe-form"}}
    </div>
</template>

它不是显示带有标签和输入字段的简单表以及它返回的提交按钮,而是一个对象数组,它们显示为

[object Object]
[object Object]
[object Object]
[object Object]
Submit

按钮呈现为按钮,但我的架构上的字段不是。

2 个答案:

答案 0 :(得分:2)

切换到旧版本,当前版本为1.5.0。需要使用1.4.3。

这是命令:

cd [to your project]
meteor npm install --save simpl-schema@1.4.3

答案 1 :(得分:0)

首先卸载较旧的simpl-schema

流星npm卸载--save simpl-schema

然后将简单模式1.5.0降级为1.4.0

流星npm install --save simpl-schema@1.4.3

对我有用。