Python Flask,如何设置内容类型

我正在使用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)。

以上是 Python Flask,如何设置内容类型 的全部内容, 来源链接: utcz.com/qa/422908.html

回到顶部