我在html中接受来自用户的大量输入,然后我将其传递给ajax查询以获取响应。
$.ajax({
url:"http://0.0.0.0:8080/getReport",
type:"GET",
data:JSON.stringify(out),
dataType:"json",
contentType:"application/json"
})
以下是提供上述请求的Flask代码。
@app.route('/getReport', methods=['GET'])
def report():
return Response('this is a sample response')
上面的方法是返回我可以在ajax的complete
参数中捕获的响应,但是我不明白它为什么不显示Response? (这将只是整个页面上的文字。)