📌  相关文章
📜  'NAME':BASE_DIR 'db.sqlite3',TypeError:不支持的操作数类型:'str' 和 'str' - 无论代码示例

📅  最后修改于: 2022-03-11 14:59:01.282000             🧑  作者: Mango

代码示例1
BASE_DIR = Path(__file__).resolve().parent.parent

db_path = BASE_DIR / 'db.sqlite3'

# or

db_path2 = os.path.join(str(BASE_DIR), 'db.sqlite3')