如何删除 AutoForm 下拉列表“(Select One)”字段?
How to remove AutoForm dropdown list "(Select One)" field?
我正在做一个 Meteor 项目,我正在使用 AutoForm package。
现在我想从表单的 select 下拉列表中删除 "(Select One)" 字段。我该怎么做?
您可以使用firstOption
属性来指定标签,例如:
{{#autoForm id="selectForm" schema=Schemas.Select}}
{{> afFormGroup name="favoriteYear" options=options firstOption="Please select your favorite year"}}
<button type="submit" class="btn btn-primary">Submit</button>
{{/autoForm}}
或者您可以通过将 firstOption
属性设置为 false
:
来自动 select 第一个选项(没有空值)
{{#autoForm id="selectForm" schema=Schemas.Select}}
{{> afFormGroup name="favoriteYear" options=options firstOption=false}}
<button type="submit" class="btn btn-primary">Submit</button>
{{/autoForm}}
我正在做一个 Meteor 项目,我正在使用 AutoForm package。 现在我想从表单的 select 下拉列表中删除 "(Select One)" 字段。我该怎么做?
您可以使用firstOption
属性来指定标签,例如:
{{#autoForm id="selectForm" schema=Schemas.Select}}
{{> afFormGroup name="favoriteYear" options=options firstOption="Please select your favorite year"}}
<button type="submit" class="btn btn-primary">Submit</button>
{{/autoForm}}
或者您可以通过将 firstOption
属性设置为 false
:
{{#autoForm id="selectForm" schema=Schemas.Select}}
{{> afFormGroup name="favoriteYear" options=options firstOption=false}}
<button type="submit" class="btn btn-primary">Submit</button>
{{/autoForm}}