11.Tornado_设置静态资源

1.概述

Tornado想设置静态资源访问资料主要有两种方式:

  1. 通过在Application对象中通过static_path参数来设置静态的目录,可以通过static_url_prefix设置前缀,默认是static
  2. 通过StaticFileHandler控制类来设置路径

2.测试两种方法代码展示

from tornado import web, ioloop
from tornado.web import RequestHandler

class IndexHandler(RequestHandler):
    def get(self):
        self.write('Hello Tornado')

if __name__ == '__main__':
    # 方法1:通过再Application对象中通过static_path参数来设置静态的目录
    '''
    app = web.Application([('/',IndexHandler)],debug=True,
     static_path = './static/', # 获取静态资源地址
    # 默认访问静态资源的前缀static
    static_url_prefix = '/img/' # 可选项:设置静态资源的前缀
    )
    '''
    # 方法2:通过控制类来设置静态文件(这次是固定的路径地址,不友好)
    '''
    app = web.Application([
        ('/',IndexHandler),
        ('/img/(.*)',web.StaticFileHandler,{'path':'./static/'}) 
        ],
    debug=True,)
    '''
    # 方法3:更新方法2,动态的获取静态资源地址(推荐使用!!!!)
    import os
    static_path = os.path.join(os.path.dirname(__file__),'static')
    app = web.Application([
        ('/',IndexHandler),
        ('/static/(.*)',web.StaticFileHandler,{'path':static_path})  #http://127.0.0.1:8000/static/img/1.jpg
        ],
    debug=True,)




    app.listen(8000)
    ioloop.IOLoop.current().start()
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

想成为数据分析师的开发工程师

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值