在 django 项目中出现 typeError 错误
Posted
技术标签:
【中文标题】在 django 项目中出现 typeError 错误【英文标题】:Getting a typeError error in django project 【发布时间】:2020-12-06 08:42:44 【问题描述】:我为我的新项目创建了一个虚拟环境,安装了 django 并启动了新项目。但是,每当我使用 manage.py 运行一行代码时,都会出现这个长错误。
PS D:\My stuff\Website development\Isow website\isow> python manage.py makemigrations
No changes detected
Traceback (most recent call last):
File "manage.py", line 22, in <module>
main()
File "manage.py", line 18, in main
execute_from_command_line(sys.argv)
File "C:\Users\rahma\AppData\Local\Programs\Python\Python37\lib\site-packages\django\core\management\__init__.py", line 381, in execute_from_command_line
utility.execute()
File "C:\Users\rahma\AppData\Local\Programs\Python\Python37\lib\site-packages\django\core\management\__init__.py", line 375, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "C:\Users\rahma\AppData\Local\Programs\Python\Python37\lib\site-packages\django\core\management\base.py", line 336, in run_from_argv
connections.close_all()
File "C:\Users\rahma\AppData\Local\Programs\Python\Python37\lib\site-packages\django\db\utils.py", line 224, in close_all
connection.close()
File "C:\Users\rahma\AppData\Local\Programs\Python\Python37\lib\site-packages\django\db\backends\sqlite3\base.py", line 248, in close
if not self.is_in_memory_db():
File "C:\Users\rahma\AppData\Local\Programs\Python\Python37\lib\site-packages\django\db\backends\sqlite3\base.py", line 367, in is_in_memory_db
return self.creation.is_in_memory_db(self.settings_dict['NAME'])
File "C:\Users\rahma\AppData\Local\Programs\Python\Python37\lib\site-packages\django\db\backends\sqlite3\creation.py", line 12, in is_in_memory_db
return database_name == ':memory:' or 'mode=memory' in database_name
TypeError: argument of type 'WindowsPath' is not iterable
数据库入口:
DATABASES =
'default':
'ENGINE': 'django.db.backends.sqlite3',
'NAME': BASE_DIR / 'db.sqlite3',
【问题讨论】:
您的数据库相关设置是什么样的? @deceze 抱歉,我不明白你的意思 你的settings.py
; DATABASES
条目是什么样的?
@deceze 我编辑了我的帖子并在我的 settings.py 中添加了数据库条目
这能回答你的问题吗? return database_name == ':memory:' or 'mode=memory' in database_name TypeError: argument of type 'WindowsPath' is not iterable
【参考方案1】:
似乎 NAME 被转换为 pathlib.Path (WindowsPath) 对象而不是字符串,然后不能以与os.path 期望字符串相同的方式在 Django 中使用(不是 100% 肯定,因为没有深入调查)
所以在字符串中强制转换是合适的
'NAME': str(os.path.join(BASE_DIR, "db.sqlite3"))
【讨论】:
请参阅my answer to a similar question 以了解该问题的可能解释。这个问题似乎在较新的 Django 版本中得到解决。【参考方案2】:确保你确实在 venv 中执行了你的命令(你应该看到 (venv)
)
如果你像@iklinac 所说的那样,这应该可以解决你的问题:
'NAME': str(os.path.join(BASE_DIR, "db.sqlite3"))
【讨论】:
【参考方案3】:另外,对于 Django>=3.1,包含路径模块以代替 os 模块。因此,使用:
'NAME': str(BASE_DIR / 'db.sqlite3')
因此,DB sqlite3 设置在 settings.py 中将如下所示。
DATABASES =
'default':
'ENGINE': 'django.db.backends.sqlite3',
'NAME': str(BASE_DIR / 'db.sqlite3')
【讨论】:
以上是关于在 django 项目中出现 typeError 错误的主要内容,如果未能解决你的问题,请参考以下文章
TypeError: connect() 参数 4 必须是 str,而不是 WindowsPath。 /*我在简单登录 django 项目中遇到的错误*/
访问 django 管理页面时出错,如下所示 - TypeError at /admin/login/ _getfullpathname: 路径参数的非法类型
django:TypeError:'tuple'对象不可调用