angularjs 動態(tài)從后臺獲取下拉框的值,只要是使用repeat指令,后臺提供的是一個list的對象,里面包含value和顯示的值,如下:
js文件:
//職務(wù)等級和檔次/軍銜等級和檔次,需要從后臺獲取:poslist,type:2/3/4/5 $scope.getDyActivityInforItems=function(){ serviceData.getData('inforinput/getAllSelectValueByType','POST',{ type:2 }).then(function(json){ if(json.code==0){ $scope.poslist=json.content; }; }, function(json){ console.log(json); }); };界面:
<!-- 空格空開來區(qū)分職務(wù)等級 --><div class="item" style="border-top: 1px solid #ddd;padding-top: 2px;"><label class="list_tit">職務(wù)等級</label><div class="item_input" ng-init="getDyActivityInforItems()"> <!-- <select class="fillIn select-able" ng-model="item" ng-options="item as y for y in addInfo.posList" id="dutLevel_view_1" name="dutLevel"> </select> --> <select class="fillIn select-able" ng-model="selectedPos" id="dutLevel_view_1" name="dutLevel"> <option ng-repeat="x in poslist" value="{{x.select_code}}">{{x.select_name}}</option> </select> <span class="imp_list_rema">*</span><!-- <select class="fillIn select-able" ng-model="addInfo.addInfoView.positionRank" ><option value="" selected>請選擇</option></select> --></div></div>===============分割線,2017年7月20日17:07:14-============
后面遇到一個問題,當(dāng)新增了一個下拉選項,需要刷新了下拉的list,但就會默認(rèn)顯示第一個,沒有獲取剛開始顯示界面的值,需要使用apply進(jìn)行更新:
addInfo.addInfoView.positionRank=0; $scope.poslist=json.content; setTimeout(function() { $scope.$apply(function() { addInfo.addInfoView.positionRank=yuanPos; }); }, 1000); html上:
<!-- 空格空開來區(qū)分職務(wù)等級 --> <div class="item" style="border-top: 1px solid #ddd;padding-top: 2px;"> <label class="list_tit">職務(wù)等級</label> <div class="item_input" ng-init="getPosMilSelectValue()"> <select class="fillIn select-able" ng-selected="addInfo.addInfoView.positionRank" ng-model="addInfo.addInfoView.positionRank" id="dutLevel_view_1" name="dutLevel"> <option ng-repeat="x in poslist" value="{{x.select_code}}">{{x.select_name}}</option> </select> <span class="imp_list_rema">*</span> <span style="background:#3cb671;margin-left:20px;height:17px;width:20px" ng-click="addInfo.viewInput_add_item=!addInfo.viewInput_add_item;addInfo.addItemName='';selectType=2"> <a style="margin-left:7px;margin-top:2px" href="javascript:;" rel="external nofollow" title=""> + </a></span> </div> </div>
新聞熱點
疑難解答
圖片精選