在我的 Java Web 应用程序中,我调用 ajax 请求如下。
<script type="text/javascript">
function selectTableHandler() {
console.log("indise selectTableHandler");
var xhttp = new XMLHttpRequest();
var selectedTable = document.getElementById('selectTable').value;
alert(selectedTable);
xhttp.open("GET", "populateTableColumList.action?tablename="
+ selectedTable, true);
xhttp.send();
console.log(xhttp.responseText);
}
</script>
Action 正在调用并返回状态代码 200,如下所示。
Remote Address:[::1]:8080
Request URL:http://localhost:8080/ReportBuilder/populateTableColumList.action?tablename=films
Request Method:GET
Status Code:200 OK
但是,它给出了 XMLHttpRequest 的空响应。 console.log(xhttp.responseText); 行 不打印任何内容。此外,控制台日志中没有错误。
任何建议,将不胜感激。
谢谢
最佳答案
需要添加一个回调函数来获取ajax请求的结果。
xhttp.onreadystatechange = function() {
if (xhttp.readyState == 4 && xhttp.status == 200) {
console.log(xhttp.responseText);
}
}
关于javascript - XMLHttpRequest 的空响应,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33142083/