静态文件
静态文件和路径,如图片文件,由Sanic在App.static方法注册时提供服务。该方法采用端点URL和文件名。然后可以通过给定的端点访问指定的文件。
from sanic import Sanic
app = Sanic(__name__)
# Serves files from the static folder to the URL /static
app.static('/static', './static')
# Serves the file /home/ubuntu/test.png when the URL /the_best.png
# is requested
app.static('/the_best.png', '/home/ubuntu/test.png')
app.run(host="0.0.0.0", port=8000)
注意:目前您无法使用url_for构建静态文件的URL。