我有以下架构的复选框:
'category.isParent': {
type: Boolean
,defaultValue: false
}
以下是复选框的自动表单代码:
<div class="row">
<div class="col-lg-8 col-md-offset-5 padding-left-0">
{{> afFieldInput name='category.isParent' id='isParent' template="plain"}}
</div>
</div>
以下是生成的源代码(从firefox复制)
<div class="checkbox">
<label>
<div id="uniform-isParent" class="checker"><span><input data-schema-key="category.isParent" id="isParent" name="category.isParent" type="checkbox"></span></div>
Is parent
</label>
我想根据自己的需要自定义生成的源代码。 有人可以指导我,我可以在自动格式或简单架构中做什么以及如何自定义自动格式自动生成的代码。
答案 0 :(得分:0)
您可以通过设置字段默认属性来使用autoform进行一些自定义。
请参阅:https://github.com/aldeed/meteor-autoform#putting-field-attribute-defaults-in-the-schema