たとえば、次の関数を使用して、ハグでスラッシュを含む文字列を渡す方法はありますか:
import hug
@hug.get("/returnfilecontent/{path}")
def doubles(path):
return open(path, 'r').read()
http://localhost/returnfilecontent/foo/bar/myfile.md
にあるファイルからコンテンツを読み取るために にアクセスしたいfoo/bar/myfile.md
。
ハグはパスではうまく動作しないようで、次のようなパス以外の文字列しか渡すことができませんhttp://localhost/returnfilecontent/myfile.md