Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
CherryPy では、ファイル パス (/abc/def/ghi) などの引数を URL 経由でどのように渡しますか? のようなことをしたいhttp://...../filepath="abc/def/ghi"。ありがとう。
http://...../filepath="abc/def/ghi"
~ を区切り文字として使用し、文字列内の ~ を /... に置き換えるだけです。
http://...../filepath=abc~def~ghi def SomePage(self, filepath=None): filepath.replace('~', '/') return 'HelloWorld'
お役に立てれば、
アンドリュー