我正在嘗試使用AngularJS
將數據綁定到<select>
標記。Dropdownlist數據綁定在AngularJS中無法正常工作
腳本
$scope.customerrouters = [];
$http.post("/Customer/GetCustomerRouterList").success(function (data) {
$scope.customerrouters = data;
});
$scope.selectedrouters = null;
的Html
<select class="form-control" ng-options="r as r.Name for r in customerrouters" ng-model="selectedrouters">
<option value="">-- Select --</option>
</select>
的問題是,所述dorpdownlist呈現像下面的圖像中:
呈現的HTML
可否請你建議我什麼建議?
謝謝。
你有什麼數據可以顯示嗎? –
在你的問題中粘貼你的'customerrouters'值。 – Vineet