静态文件(比如css啊,需要下载的各位文件等),需要通过static_file来操作,首先记得要在import中导入
@route('/static/<filename>') def server_static(filename): return static_file(filename, root='/path/to/your/static/files')
赞
踩
静态文件(比如css啊,需要下载的各位文件等),需要通过static_file来操作,首先记得要在import中导入
@route('/static/<filename>') def server_static(filename): return static_file(filename, root='/path/to/your/static/files')
转载于:https://www.cnblogs.com/aomi/p/7028122.html
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。