bottle强制下载 编程语言 bottle python 发布时间 : 2020-07-17 00:00 字数:42 阅读 : 123456789from bottle import route,run,static_file@route("/<filename:path>")def f(filename): return static_file(filename, root="./bottle项目框架/static/img" ,download=True) #打开网页就会强制下载run(port=8088,reloader=True) 转载请注明来源 https://tianweiye.github.io