为什么urls.py不会拿起我的观点

时间:2014-05-01 01:36:07

标签: python regex django django-urls

我有urls.py声明:

(r'^Account/PS/d=^[A-za-z0-9]{2,50}.[a-z]{1,3}$', SAA),

我点击了一个看起来像这样的链接:

http://127.0.0.1:8000/Account/PS/d=mydomain.com

stopped eclipse's serverrestarted eclipse,然后是started server

然后我点击上面的链接,但它会抛出django“找不到页面”,显示正则表达式与{urlx>匹配时urls.py声明。

我在这里做错了什么?

谢谢。

1 个答案:

答案 0 :(得分:1)

您需要从正则表达式中取出第二个^。将其更改为:

(r'^Account/PS/d=[A-za-z0-9]{2,50}.[a-z]{1,3}$', SAA),