0

我用谷歌搜索了很多,但找不到。

比如我的app是www.abc.com,这种url怎么匹配:

www.abc.com/?code=abcd1234

我的处理程序:

handers = [
  (r"/?", HomeHandler),
  (r"/?code=([^/]+)", OtherHandler),
]

我认为第二种模式是错误的,它总是使用第一种

4

1 回答 1

0

好的,我知道 r"/" 是路径,而 '?code=([^/]+)' 是查询。

于 2012-04-09T05:59:03.913 回答