-1
私の現在のコード:AngularJSのユーザー登録に選択メニューを使用するにはどうすればいいですか?
<select ng-model="user.userType" ng-required="true" class="form-control">
<option value="pharmacist">Pharmacist</option>
<option value="chief_pharmacist">Chief Pharmacist</option>
<option value="doctor">Doctor</option>
</select>
//sample code
私は選択メニューにあるように、データベースに選択された値を渡すために3つのユーザータイプを必要とします。
達成したいことは?その働き:http://plnkr.co/edit/YzHPRKUMpnwGPySWJZwg?p=preview –