在下拉列表中获取隐藏值

时间:2019-04-12 11:48:40

标签: html angularjs tags ng-options angularjs-ng-options

我正在使用下拉菜单,该下拉菜单应使用ng-option在我的对象中显示列表。 我正在获取下拉菜单中的四个项目列表,看不到下拉菜单中的项目

 <select class="" ng-model="vendor.termMaster.termTypeMaster.id" ng-options="t.id as t.terms for t in fetchTermTypeList">
                                                            <option value="">-- Please select --</option>

上面是我所做的html代码示例。

    $scope.fetchTermType= function(){

        vendorsList_Service.fetchTermType().then(function(response){

            $scope.fetchTermTypeList=response.data;
            console.log($scope.fetchTermTypeList);

            $(".loader").fadeOut("slow");
        },function(response){
            $(".loader").fadeOut("slow");
        }); 
    };

$ scope.fetchTermType();

这是我的控制器

0 个答案:

没有答案