以下は私のコードスニペットです。angularを使用してドロップダウンを検証したい。
<td align="left" width="52%">
<span class="requiredSmall">*</span>
<select class="Sitedropdown" style="width: 220px;"
ng-model="selectedSpecimen().serviceID"
ng-options="service.ServiceID as service.ServiceName for service in services">
<option value="" ng-selected="selected">Select Service</option>
</select>
</td>
有効な手段:
有効な値は、"Select Service" 以外の任意の値にすることができます。これが私の既定値です。他のASP.netと同様に、ドロップダウンにはフィールドバリデーターのDefaultValue = "0"が必要なので、ここで私のドロップダウンはサービスからバインドされ、「サービスの選択」を除く他のすべての値を選択したいと思います。