我正在使用 Flask 和 Python。从 Flask 方法中,我试图在 AJAX 调用中返回 HTML 表格行。
HTML 页面有:
<div>
<table id="tableQuestions">
</table>
//AJAX Requests to get
function loadQuestions() {
var xmlHttp = new XMLHttpRequest();
xmlHttp.onreadystatechange = function() {
alert(xmlHttp.readyState + " " + xmlHttp.status);
if (xmlHttp.readyState==4 && xmlHttp.status == 200) {
var response = xmlHttp.responseText;
console.log(response);
document.querySelector("#tableQuestions").innerHTML=response;
}
xmlHttp.open("GET", '/gS', true);
xmlHttp.send(null);
}
}
Flask 路线有:
#test.mix() returns html table rows
@gbp.route('/gS')
def gS():
test=mn()
response = make_response(test.mix(quesCount=4),200)
response.mimetype="text/html"
在 Safari 调试器中,我可以看到有responseText来自服务器的表数据,但readystate仍然是 1 和status= 0。
你能建议我如何克服这个问题吗?
长风秋雁
相关分类