我在json中得到一个值,并且想把这个值放在selectbox html auto sleceted中,在angularjs中我怎么能这样做?
这是我的HTML代码
<select class="form-control" name="comregtype" ng-init="users.comregtype" id="comregtype" ng-options="c.name for c in colors" >
<option ng-selected="users.comregtype" ></option>
<option>Company Registration Type</option>
<option>Proprietor</option>
<option>Partnership Firm</option>
<option>LLP</option>
<option>Pvt. Ltd. Co.</option>
<option>Ltd. Co.</option>
</select>
JS:$scope.users = {comregtype:response.comregtype}
我在response.comregtype = "LLP"
如何在selecetbox中将其设置为seleceted值。
如果有人可以提供帮助。
由于
答案 0 :(得分:0)
你可以这样做,
<select ng-model="value" ng-init="value='LLP'" ng-options="mode.value as mode.value for mode in types.RegistrationType">
</select>