如何在js代码里写绝对路径
发布网友
发布时间:2022-04-24 19:12
我来回答
共1个回答
热心网友
时间:2022-05-18 04:46
$.ajax({
url : '${BASE_PATH}/user/checkPower',
type : 'POST',
async: false, //同步执行
data : {
optpurview : optpurview
},
dataType : 'JSON',
success : function(data) {
if(!data.success) {
callbackfunc();
}
},
error : function(data) {
$.messager.alert('提示', '系统异常,请联系管理员!', 'error');
}