下拉列表中的值未填充

时间:2017-01-17 11:00:49

标签: javascript angularjs angular-material

我正在尝试使用数据库中的数据填充下拉列表。我从数据库中获取数据,但我不知道为什么没有填充下拉列表。当我执行console.log时,值为enter image description here

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>

1 个答案:

答案 0 :(得分:0)

$scope.PdfControls = response; PdfControls从大P开始 ng-repeat="pdfControl in pdfControls" pdfControls以小p

开头

变量&amp;对象属性区分大小写