如何删除AutoForm下拉列表"(选择一个)"领域?

时间:2015-08-24 10:06:28

标签: javascript meteor meteor-autoform

我正在使用Meteor项目而我正在使用AutoForm package。 现在,我想从表单中的选择下拉列表中删除"(选择一个)" 字段。我怎么能这样做?

1 个答案:

答案 0 :(得分:6)

您可以使用OperationA() { //some code Task.Run(() => { OperationB(); }); //continue your code. } 属性指定标签,例如:

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