在 django URL 中使用第一个参数

发布于 2024-11-06 01:43:47 字数 392 浏览 0 评论 0原文

我想知道是否可以使用 Django URL 的第一个“段”作为参数,以及该正则表达式是什么样子。

示例:

(r'^blog/', include('blog.urls')),
url(r'^admin/', include(admin.site.urls)),
#### I want to use the following
(r'^THISISMYPARAM$, include("whatever")),

那么当有人访问 http://example.com/SOMETHING 时,我可以用它来做一些事情。

我的正则表达式不断破坏我的其他网址:\

I want to to know if its possible to use the first "segment" of a Django URL as a parameter and what would that regex look like.

example:

(r'^blog/', include('blog.urls')),
url(r'^admin/', include(admin.site.urls)),
#### I want to use the following
(r'^THISISMYPARAM$, include("whatever")),

So then when someone visited http://example.com/SOMETHING I could use do something with that.

My regex keeps breaking my other urls :\

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

铜锣湾横着走 2024-11-13 01:43:47

你可以这样做:

(r'^(?P<thisismyparam>\w+)
, include('whatever'))

You can do something like this:

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