URL正则表达式帮助

发布于 2024-12-01 05:38:52 字数 210 浏览 1 评论 0原文

在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

梦在深巷 2024-12-08 05:38:52

将方括号更改为圆括号()。现在的方式匹配任何字符 a d d | r e 等等...

Change the square brackets to round () brackets. The way it is now matches any of the characters a d d | r e etc...

白日梦 2024-12-08 05:38:52

发生这种情况是因为 [...] 匹配集合中的任何字符。只需删除护腕(使用 (?P<>...) 中的护腕通常就足够了):

r'(?P<add_or_remove>add|remove)/'

This happens because [...] matches any character from set. Just remove bracers (using bracers from (?P<>...) is usually enough):

r'(?P<add_or_remove>add|remove)/'
强辩 2024-12-08 05:38:52

我承认我对Python并不熟悉。但是,如果您尝试捕获添加删除,则您的语法是错误的。也就是说,您不需要括号,因为这是字符集的表示法 - 匹配该集中的任何字符。

r'(?P<add_or_remove>add|remove)/'

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.

r'(?P<add_or_remove>add|remove)/'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文