静态文件(比如css啊,需要下载的各位文件等),需要通过static_file来操作,首先记得要在import中导入
@route('/static/<filename>') def server_static(filename): return static_file(filename, root='/path/to/your/static/files')