-----------ajax代码
-----------------
$
.ajax({
url
: utils
.getManagUrl
+"/doctorController/selectdepartment",
data
: {"page": 1,"limit":10000,"unitId":unitId
},
dataType
: "json",
xhrFields
:{withCredentials
: true},
type
: "post",
success
: function (data
) {
$
.each(data
.data
, function (index
, item
) {
if(item
.id
==dptid
){
$('#departmentId').append("<option value="+item
.id
+" selected>"+item
.depName
+"</option>");
}else{
$('#departmentId').append("<option value="+item
.id
+">"+item
.depName
+"</option>");
}
});
layui
.form
.render("select");
}, error
: function () {
layer
.msg('失败');
},
});
---------------后台
-----------------------
@RestController
@
CrossOrigin(origins
="*",allowCredentials
="true")
@
RequestMapping("/doctorController")
转载请注明原文地址: https://mac.8miu.com/read-504385.html