我通常使用的method version來處理瓶路由如何在提供靜態文件時將@ bottle.route轉換爲bottle.route()?
bottle.route("/charge", "GET", self.charge)
瓶文檔很大程度上依賴於@route
裝飾處理路由和我有一個情況下,我不知道如何轉換成我最喜歡的版本。在serving static files的文檔使用示例
from bottle import static_file
@route('/static/<filename:path>')
def send_static(filename):
return static_file(filename, root='/path/to/static/files')
有沒有辦法把它們變成某種
bottle.route("/static", "GET", static_file)
建設的?特別是我很困惑如何通過filename
和root
參數static_file
。
這很簡單嗎? :)我會發誓,我試了幾次。非常感謝(切換接受的答案和+1) – WoJ