我有一个autoform,包含一个对象数组和字符串数组:
# Schema
misc:
type: Array
label: "Something"
optional: true
"misc.$":
type: String
optional: true
最初我不想要显示任何表格。只是" +" - 按钮。我在我的模板中使用它:
+autoForm collection="Collections.UserProfiles" id="updateProfileForm" type="update" doc=this class="form-horizontal"
+afQuickField name="misc" template="bootstrap3-horizontal" initialCount=0
我已经尝试在Schema中使用initialCount = 0。
答案 0 :(得分:0)
好的,我刚刚发现它是如何工作的。很抱歉,但也许有人有同样的问题。只需指定这样的架构即可。它也适用于对象数组。
misc:
type: Array
label: "Something"
optional: true
autoform:
initialCount: 0
"misc.$":
type: String
optional: true
仍然我不知道为什么我没有工作在模板中设置它。因为这就是autoform文档中解释的方式。