我有一个这样的选择字段:
<select ng-init="exchangeOption = widget.content.exchange[0]"
ng-Model="exchangeOption"
ng-options="exchangeOption.title for exchangeOption in widget.content.exchange"
ng-change="internalLink(exchangeOption.url)">
</select>
如您所见,现在我总是选择第一个选项。但实际上“交换”有一个“选定”字段,它是一个布尔值,如果该选项应该是选定的,则设置为 true。
你会怎么做?
提前致谢!