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.
私はたくさんグーグルで検索しましたが、見つかりません。
たとえば、私のアプリは www.abc.com です。このような URL を一致させるにはどうすればよいですか:
www.abc.com/?code=abcd1234
私のハンドラ:
handers = [ (r"/?", HomeHandler), (r"/?code=([^/]+)", OtherHandler), ]
2番目のパターンは間違っていると思います。常に最初のパターンを使用します
わかりました。r"/"はパスで、'?code =([^ /] +)'はクエリです。