$.ajax({type:"get",//请求类型url:path+"/user/getrolelist",//请求的urldata:{method:"getrolelist"},//请求参数dataType:"json",//ajax接口(请求url)返回的数据类型success:function(data){//data:返回数据(json对象)if(data != null){userRole.html("");var options = "";for(var i = 0; i < data.length; i++){//alert(data[i].id);//alert(data[i].roleName);options += "";}userRole.html(options);}},error:function(data){//当访问时候,404,500 等非200的错误状态码validateTip(userRole.next(),{"color":"red"},imgNo+" 获取用户角色列表error",false);}});
java后台// 查询角色列表 public void getrolelist(HttpServletRequest req, HttpServletResponse resp){ // 添加角色列表 RoleServiceImpl roleService = new RoleServiceImpl(); List