Angularjs 根据一个select的值去设置另一个select的值方法

前端之家收集整理的这篇文章主要介绍了Angularjs 根据一个select的值去设置另一个select的值方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

html:

{{'SELECT.LABEL.VXI.CUSTOM.SELECT' | translate}}

js:

//$http的method可以是get/delete/head/jsonp/post/put
//$http服务快捷的get请求
//alert('root=='+ACTIVITI.CONFIG.contextRoot);//对应/activiti-explorer/service
$http({
method:'PUT',url:ACTIVITI.CONFIG.contextRoot +'/getFormFieldList'
})
.success(
function(data,status,headers,config){
//成功加载
$scope.names=data;
})
.error(

function(data,config){
//处理错误
//do nothing
}
);
//change
$scope.mySelectControllerChange=function(){
var app=angular.module('activitiModeler',[]);
if($scope.myField.optionGroupId!=null && $scope.myField.optionGroupId!=''){
//有optionGroup
console.log('if');
$rootScope.relationList = [{id:0,name:'等于'},{id:1,name:'不等于'},{id:2,name:'包含'}];
}else{
//没有optionGroup
console.log('else');
$rootScope.relationList = [{id:0,{id:3,name:'大于'},{id:4,name:'小于'},{id:5,name:'小于等于'},{id:6,name:'大于等于'},name:'包含'}];
}

}

}
];

//AngularJS $emit $broadcast $on

/myParentController/
angular.module('activitiModeler').controller('myParentController',['$rootScope','$scope','$timeout','$window',function ($rootScope,$scope,$timeout,$window) {
//选择字段下拉列表,触发关系符下拉
$scope.$on('to_myParentController_on_myColumnSelectModel_change',function(event,data){
$scope.$broadcast('to_myRelationController_on_myColumnSelectModel_change',data);
});

}]);

/关系符/
angular.module('activitiModeler').controller('myRelationController',$window) {
$scope.myRelationDisableVar=true;
$scope.objDisableTrue=true;//加上灰背景
//接收事件-根据字段显示下拉
$scope.$on('to_myRelationController_on_myColumnSelectModel_change',data){
if(data.pa!=''){
$scope.myRelationDisableVar=false;
$scope.objDisableTrue=false;//去掉灰背景
if(data.pb!=null && data.pb!=''){
//有optionGroup
$scope.relationList = [{id:0,name:'包含'}];
}else{
//没有optionGroup
$scope.relationList = [{id:0,name:'包含'}];
}
}else{
$scope.relationList=null;
$scope.myRelationDisableVar=true;
$scope.objDisableTrue=true;//加上灰背景
}

});

}]);

以上这篇Angularjs 根据一个select的值去设置另一个select的值方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。

原文链接:https://www.f2er.com/js/31018.html

猜你在找的JavaScript相关文章