我正在尝试使用数据库中的数据填充下拉列表。我从数据库中获取数据,但我不知道为什么没有填充下拉列表。当我执行console.log时,值为:
getPdfControls().then(function (response) {
$scope.PdfControls = response;
});
function getPdfControls() {
return $http.post(baseUrl + 'Admin/getPdfControls').then(function (response) {
console.log($.parseJSON(response.data));
return $.parseJSON(response.data);
})
}
<md-select ng-model="selected.pdfControl" ng-change="changePdfControl(selected.pdfControl)" required >
<md-option ng-repeat="pdfControl in pdfControls" value="{{pdfControl.ControlColumn}}">{{pdfControl.ControlText}}</md-option>
</md-select>
答案 0 :(得分:0)
$scope.PdfControls = response;
PdfControls从大P开始
ng-repeat="pdfControl in pdfControls"
pdfControls以小p
变量&amp;对象属性区分大小写