我的哨兵异常中不断出现以下错误
AttributeError: 'RegexURLResolver' object has no attribute '_urlconf_module'
并且跟踪仅指向带有 django 代码库的代码,而不指向我的应用程序中的任何位置。我的日志也很干净。这可能是什么原因?
raise Resolver404({'path' : path})
@property
def urlconf_module(self):
try:
return self._urlconf_module
except AttributeError:
self._urlconf_module = import_module(self.urlconf_name)
return self._urlconf_module
@property
'self'
<RegexURLResolver urls (None:None) ^/>