Tornado如何在response中返回图片?


小弟初学Tornado,卡在这几天了,请大家解惑。
如题,就是想实现访问一个URL,返回一张图片。类似Flask中send_file的功能
感觉很简单但是一直没找到解决方法...

python tornado

召唤师凯尔萨斯 10 years, 3 months ago

可以看下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

虽然没用过,但是应该就是在response的stream中把文件流写入,之前设置好content-type就行了

popopjk answered 10 years, 3 months ago

Your Answer