我在使用Ajax向后台请求数据时结果为Undefined
正常应该是我点击按钮之后浏览器执行Ajax的回调函数,向我返回数据啊,为什么我的数据时Undefined啊,请CSDN大佬帮忙解决一下,谢谢!
HTML代码
<body>
<button id="submit">点击</button>
</body>
</html>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="../static/js/t.js"></script>
JavaScript代码
$("#submit").click(function(){
let jsons= {"data": "Hello"}
const result = Ajax(jsons, '/app');
console.log(result.responseJSON); // 此处返回结果为Undefined,如果此时在浏览器console再次调用Ajax函数,数据则会正常返回回来
});
function Ajax(data, path) {
return $.ajax({
async: true, // 设置为异步调用
type: 'post',
url: path,
cache: false,
contentType: 'application/json;charset=utf-8',
data: JSON.stringify(data),
dataType: 'json',
success: function (data) {
},
error: function () {
alert("请求失败")
}
})
}
后端Python代码
@app.route("/app", methods=["POST", "GET"])
def test():
data = {"13": 123}
return json.dumps(data);
app.run()