如何在angularjs

时间:2016-09-29 16:03:48

标签: javascript angularjs

我在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值。

如果有人可以提供帮助。

由于

1 个答案:

答案 0 :(得分:0)

你可以这样做,

  <select ng-model="value" ng-init="value='LLP'"   ng-options="mode.value as mode.value for mode in types.RegistrationType">
  </select>

DEMO