Tôi đã tìm kiếm Google và không thể tìm thấy bất cứ điều gì về điều này.
Tôi có mã này.
<select ng-model="somethingHere"
ng-options="option.value as option.name for option in options"
></select>
Với một số dữ liệu như thế này
options = [{
name: 'Something Cool',
value: 'something-cool-value'
}, {
name: 'Something Else',
value: 'something-else-value'
}];
Và đầu ra là một cái gì đó như thế này.
<select ng-model="somethingHere"
ng-options="option.value as option.name for option in options"
class="ng-pristine ng-valid">
<option value="?" selected="selected"></option>
<option value="0">Something Cool</option>
<option value="1">Something Else</option>
</select>
Làm thế nào có thể đặt tùy chọn đầu tiên trong dữ liệu làm giá trị mặc định để bạn sẽ nhận được kết quả như thế này.
<select ng-model="somethingHere" ....>
<option value="0" selected="selected">Something Cool</option>
<option value="1">Something Else</option>
</select>
a **single** hard-coded <option> element ... can be nested into the <select> element.
Các tùy chọn không thể là một phần của đánh dấu.