Django在运行服务器和进行迁移时出错:[重复]

问题描述 投票:0回答:1

这个问题在这里已有答案:

在进行迁移和迁移后,我在运行服务器时遇到以下错误:

错误

Warnings: 
?:(urls.W005) URL namespace 'admin' isn't unique. You may not be able to reverse all URLs in this namespace.

有人能够解释上述错误并提出解决方法吗?

django namespaces admin
1个回答
0
投票

检查你的url.py.您有多个名称空间名称具有相同的值。

url(r'^',include('',namespace ='Check Here'))

© www.soinside.com 2019 - 2024. All rights reserved.