我可以在AngularJS填充的<select>中预先选择一个值吗?</select>

时间:2013-07-23 19:17:50

标签: angularjs angularjs-directive

我有以下代码:

<select
   data-ng-disabled="modal.action=='delete'"
   data-ng-model="modal.formData.contentTypeId"
   data-ng-options="item.id as item.name for item in option.contentTypes">
</select>

代码填充具有不同contentTypes的选择框。但是,当出现选择框时,最初没有选择任何内容,它是空白的。

有没有办法让它选择第一个contentTypes作为默认值?

1 个答案:

答案 0 :(得分:1)

您可以在控制器中设置默认值

  

$ scope.modal.formData.contentTypeId = option.contentTypes [0] .id