您好我一直在尝试对 JSP 页面进行 ajax 调用。这是JS函数的一部分。
<script>
$(function(){
function myAjaxCall() {
$.ajax({
type: "post",
url: "jsp/common/myJavascriptPage.jsp",
dataType: "text",
success:
function (result) {
alert("Got the result: " + result);
},
error: function (xhr,status,error) {
alert("Status: " + status);
alert("Error: " + error);
alert("xhr: " + xhr.readyState);
},
statusCode: {
404: function() {
alert("page not found");
}
}
});
}
});
</script>
即使提到的 URL 中存在 JSP,我也经常找不到文件。请注意,我正在计算相对于 webapp 目录的 JSP 文件位置。
我尝试使用普通的 AJAX 调用(没有 jQuery),但最终出现了同样的错误。
你能帮我理解为什么它无法找到jsp吗?