gpt4 book ai didi

python - django dumpdata 空数组

转载 作者:太空狗 更新时间:2023-10-29 22:26:52 26 4
gpt4 key购买 nike

我是 django 的新手,我正在使用它为在线游戏制作网站。该游戏已经拥有自己的身份验证内容,因此我将其用作 django 的自定义身份验证模型。

我创建了一个名为“帐户”的新应用程序来放入这些东西并添加了模型。我添加了路由器并在设置中启用了它,一切正常,我可以从管理站点登录并执行操作。

现在我也在尝试学习 TDD,所以我需要将 auth 数据库转储到 fixture。当我运行 ./manage.py dumpdata account 时,我得到一个空数组。没有任何错误或任何回溯,只是一个空数组。我已尽我所能摆弄它,但我似乎无法找到问题所在。

这里是一些相关的设置。

数据库

DATABASES = {  
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'censored',
'USER': 'censored',
'PASSWORD': 'censored',
'HOST': 'localhost',
'PORT': '',
},
'auth_db': {
'ENGINE': 'mysql_pymysql',
'NAME': 'censored',
'USER': 'censored',
'PASSWORD': 'censored',
'HOST': '127.0.0.1',
'PORT': '3306'
}
}

路由器

class AccountRouter(object):
"""
A router to control all database operations on models in the
account application.
"""
def db_for_read(self, model, **hints):
"""
Attempts to read account models go to auth_db.
"""
if model._meta.app_label == 'account':
return 'auth_db'
return None

def db_for_write(self, model, **hints):
"""
Attempts to write account models go to auth_db.
"""
if model._meta.app_label == 'account':
return 'auth_db'
return None

def allow_relation(self, obj1, obj2, **hints):
"""
Allow relations if a model in the account app is involved.
"""
if obj1._meta.app_label == 'account' or \
obj2._meta.app_label == 'account':
return True
return None

def allow_syncdb(self, db, model):
"""
Make sure the account app only appears in the 'auth_db'
database.
"""
if model._meta.app_label == 'account':
return False
return None

Django 设置

DATABASE_ROUTERS = ['account.router.AccountRouter']

我真的不知道该尝试什么,感谢任何帮助或想法。

最佳答案

我也有同样的问题,你需要指定正确的数据库。例如,给定您的代码:

$ ./manage.py dumpdata --database=auth_db account

关于python - django dumpdata 空数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18217385/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com