作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我希望能够返回 application/json 以外的东西,即 kml。
我有以下几点:
@api.representation('application/vnd.google-earth.kml+xml')
def kml(data):
return Response(data, mimetype='application/vnd.google-earth.kml+xml')
class mykml(restful.Resource):
def get(self):
r = requests.get("http://myurl/kml") # This retrieves a .kml file
response = make_response(r.content)
response.headers['Content-Type'] = "application/vnd.google-earth.kml+xml"
return response
from flask import Flask, request, Response, session,make_response
最佳答案
如果您需要来自 API 方法的特定响应类型,则必须使用 flask.make_response() 返回“预烘焙”响应对象:
def get(self):
response = flask.make_response(something)
response.headers['content-type'] = 'application/vnd.google-earth.kml'
return response
关于python - 如何在flask-restful中自定义响应内容类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26023675/
我是一名优秀的程序员,十分优秀!