Google을 검색했는데 이에 대한 내용을 찾을 수 없습니다.
이 코드가 있습니다.
<select ng-model="somethingHere"
ng-options="option.value as option.name for option in options"
></select>
이런 데이터로
options = [{
name: 'Something Cool',
value: 'something-cool-value'
}, {
name: 'Something Else',
value: 'something-else-value'
}];
그리고 출력은 이와 같습니다.
<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>
데이터의 첫 번째 옵션을 기본값으로 설정하여 어떻게 결과를 얻을 수 있습니까?
<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.
옵션은 이미 마크 업에 포함되지 않았습니다.