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