Django 无法识别 django 管理 url

发布于 2024-09-05 18:14:50 字数 576 浏览 4 评论 0原文

我刚刚使用 django admin 注册了我的模型。 我导航到 /admin 的 django 管理员。我登录成功,可以看到我的所有模型。到目前为止很棒。

但是现在,如果我尝试单击其中一个链接,例如:“用户”,django 会给我一个 404 消息,说

The current URL, admin/auth/user/, didn't match any of these.

这真的很奇怪,因为在我的 urls.py 中,我已正确映射它,

(r'^admin/', include(admin.site.urls)),

我已启用所有必需的中间件,并将这些中间件放在我安装的应用程序

'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.admin',

有人知道吗?谢谢。

I just registered my models my models with django admin.
I navigate to the django admin at /admin. I log in sucessfully and I can see all my models. great so far.

But now if I try to click one of the links, for Ex: 'users', django gives me a 404 saying

The current URL, admin/auth/user/, didn't match any of these.

Its really weird because in my urls.py I have it mapped correctly

(r'^admin/', include(admin.site.urls)),

I have all the required middleware enabled and have these in my installed apps

'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.admin',

anyone have any idea? Thanks.

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

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

发布评论

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

评论(1

淡淡的优雅 2024-09-12 18:14:50

你的 urls.py 中有这个吗?:

from django.contrib import admin

admin.autodiscover()

但事实上,如果没有这个,你甚至不应该看到来自 django.contrib.auth 的模型...奇怪,你能发布完整的 urls.pt 文件吗?

Do you have this one in your urls.py?:

from django.contrib import admin

admin.autodiscover()

But in fact without this you shouldn't even see models from django.contrib.auth... weird, can you post complete urls.pt file?

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