有没有一种方法可以返回make_response()
具有特定属性的响应(来自对象或类似对象),以便它不会再次呈现页面并且也不会执行任何其他操作。我正在尝试在服务器上运行代码而不生成任何输出
一个简单的“不返回”会产生:
ValueError: View function did not return a response
这应该是可能的,因为以下内容仅下载文件而不渲染模板:
myString = "First line of a document"
response = make_response(myString)
response.headers["Content-Disposition"] = "attachment; filename=myFile.txt"
return response
httplib.NO_CONTENT
避免使用幻数。