同域下,nginx代理后 前端无法向django后端传值,找不到url,也取不到值,
通过8000访问项目本身 没有任何问题
该回答引用GPTᴼᴾᴱᴺᴬᴵ
$.ajax({
url: "/ajax/",
type: "GET",
data: { 'data': page },
dataType: "JSON",
success: function(res) {
if (res.status) {
$('#cre').html(res.data);
$('#page_list').html(res.pageCount);
alert("OK");
} else {
alert("异常");
}
},
error: function() {
alert("AJAX请求出错!");
}
});
不知道你这个问题是否已经解决, 如果还没有解决的话: