我正在我的第一个 Django 应用程序中实现用户身份验证。我决定从这里学习教程。
我刚刚完成了实现,碰巧当我将以下路由添加 path('api/app', include('app.urls'))
到 url.py 时,我收到以下错误,导致平台崩溃:
....
File "/Users/frankydoul/opt/anaconda3/lib/python3.8/site-packages/django/urls/resolvers.py", line 123, in _check_pattern_startswith_slash
if regex_pattern.startswith(('/', '^/', '^\\/')) and not regex_pattern.endswith('/'):
RecursionError: maximum recursion depth exceeded while calling a Python object
删除它让平台运行。请问有人熟悉这个错误吗?