URL正则表达式帮助
在我的 urls.py 文件中使用这个常规表达式,我只得到 add_or_remove 参数中的最后一个字母。 该网址命中了我的视图,但我只得到了用于添加的 d
和用于删除的 e
。我做错了什么?
r'(?P<add_or_remove>[add|remove])/'
谢谢
Using this regular espression in my urls.py
file, I get only the last letter in the add_or_remove param.
The url hits my view, but I am getting only d
for add and e
for remove. What am I doing wrong?
r'(?P<add_or_remove>[add|remove])/'
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将方括号更改为圆括号
()
。现在的方式匹配任何字符a
d
d
|
r
e
等等...Change the square brackets to round
()
brackets. The way it is now matches any of the charactersa
d
d
|
r
e
etc...发生这种情况是因为
[...]
匹配集合中的任何字符。只需删除护腕(使用(?P<>...)
中的护腕通常就足够了):This happens because
[...]
matches any character from set. Just remove bracers (using bracers from(?P<>...)
is usually enough):我承认我对Python并不熟悉。但是,如果您尝试捕获添加或删除,则您的语法是错误的。也就是说,您不需要括号,因为这是字符集的表示法 - 匹配该集中的任何字符。
I'll admit I'm not familiar with Python. But if your trying to capture add or remove, your syntax is wrong. That is to say you don't want the brackets as this is notation for a character set - matching any in the set.