匹配替代 url - 正则表达式 django url
我想要一个 Django URL,只有 2 个替代方案 /module/in/
或 /module/out/
我正在使用
url(r'^(?P<status>\w+[in|out])/$',
'by_status',
name='module_by-status'),
但它匹配其他模式,如 /module/ i/
、/module/n/
和 /module/ou/
。
任何提示表示赞赏:)
I want a Django URL with just 2 alternatives /module/in/
or /module/out/
I'm using
url(r'^(?P<status>\w+[in|out])/
But it matches other patterns like /module/i/
, /module/n/
and /module/ou/
.
Any hint is appreciated :)
,
'by_status',
name='module_by-status'),
But it matches other patterns like /module/i/
, /module/n/
and /module/ou/
.
Any hint is appreciated :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试
r'^(?Pin|out)/$'
您需要删除
\w+
,它匹配一个或多个字母数字字符或下划线。 bstpierre 的答案中建议的正则表达式'^(?P\w+(in|out))/$'
将匹配helloin
,good_byeout< /代码>等等。
请注意,如果您在 url 模式中使用竖线(管道)字符
|
,Django 无法反转正则表达式。如果您需要在模板中使用 url 标签,则需要编写两种 url 模式,一种用于in
,一种用于out
。Try
r'^(?P<status>in|out)/$'
You need to remove
\w+
, which matches one or more alphanumeric characters or underscores. The regular expression suggested in bstpierre's answer,'^(?P<status>\w+(in|out))/$'
will matchhelloin
,good_byeout
and so on.Note that if you use the vertical bar (pipe) character
|
in your url patterns, Django cannot reverse the regular expression. If you need to use the url tag in your templates, you would need to write two url patterns, one forin
and one forout
.你想要(in|out),你使用的[]表示包含字符'i','n','|','o','u','t'的字符类。
You want (in|out), the [] you are using indicate a character class containing the characters 'i', 'n', '|', 'o', 'u', 't'.