gpt4 book ai didi

Python Flask,如何设置内容类型

转载 作者:IT老高 更新时间:2023-10-28 12:24:20 27 4
gpt4 key购买 nike

我正在使用 Flask,并从 get 请求中返回一个 XML 文件。如何将内容类型设置为 xml?

例如

@app.route('/ajax_ddl')
def ajax_ddl():
xml = 'foo'
header("Content-type: text/xml")
return xml

最佳答案

试试这样:

from flask import Response
@app.route('/ajax_ddl')
def ajax_ddl():
xml = 'foo'
return Response(xml, mimetype='text/xml')

实际的 Content-Type 基于 mimetype 参数和字符集(默认为 UTF-8)。

响应(和请求)对象记录在这里:http://werkzeug.pocoo.org/docs/wrappers/

关于Python Flask,如何设置内容类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11773348/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com