मैंने 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.
विकल्प पहले से ही मार्कअप का हिस्सा नहीं हो सकता है।