当前位置: 代码迷 >> 综合 >> 403 The server understood the request, but refuses to authorize it...
  详细解决方案

403 The server understood the request, but refuses to authorize it...

热度:40   发布时间:2023-11-24 03:10:50.0

项目中 下拉框采取这种ajax请求后台:

$('#idType').combobox({
    editable:true,url: '${ct}/authority/getIdTypeList.do',valueField:'idType',textField:'idTypeName',disabled: false,width:176,required:true,onLoadSuccess:function(node,data){
    $("#idType").combobox('select','${apAuthInfo.idType}');}
});

请求的发起和接收都是没有问题的
在这里插入图片描述
原因是后台 拦截器把ajax这类请求给拦截了,
这里简单记录一些。

  相关解决方案