Tornado如何在response中返回图片?
小弟初学Tornado,卡在这几天了,请大家解惑。
如题,就是想实现访问一个URL,返回一张图片。类似Flask中send_file的功能
感觉很简单但是一直没找到解决方法...
召唤师凯尔萨斯
10 years, 3 months ago
Answers
可以看下web.py 中的代码的
class StaticFileHandler(RequestHandler):
@gen.coroutine
def get(self, path, include_body=True):
#...
if include_body:
content = self.get_content(self.absolute_path, start, end)
if isinstance(content, bytes_type):
content = [content]
for chunk in content:
self.write(chunk)
yield self.flush()
#...
火幻→宵风
answered 10 years, 3 months ago