我是django的新手,我正在使用它制作一个网络游戏的网站。游戏已经拥有它自己的auth东西,所以我用它作为django的自定义auth模型。
我创建了一个名为“account”的新应用,将这些内容放入并添加模型。我添加了路由器并在设置中启用它,一切正常,我可以从管理站点登录并执行操作。
现在我也在尝试学习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
DATABASE_ROUTERS = ['account.router.AccountRouter']
我真的不知道该尝试什么,感谢任何帮助或想法。
答案 0 :(得分:5)
我也有同样的问题,你需要指定正确的数据库。例如,给出您的代码:
$ ./manage.py dumpdata --database=auth_db account
答案 1 :(得分:2)
./manage.py dumpdata
命令将在运行时保持静默并输出[]
。因此建议在./manage.py shell
中运行模型的代码并且目标数据存在,例如:
from account.models import Account
print Account.objects.all()[:1]
./manage.py dumpdata
可以找到目标模型。 Django通过{APP_NAME}.models
找到模型,如果您将模型放在目录account/models/
中,请在account/models/__init__.py
中导入模型,例如:from profile import Profile
答案 2 :(得分:0)
我有类似的问题。创建一个名为models.py
的空文件解决了我的问题。检查您的应用程序目录中是否有这样的文件,如果没有 - 创建一个。
答案 3 :(得分:0)
我遇到了类似的问题,另外一个Stackoverflow线程中的this old answer对我的帮助不仅仅在于上述答案:该问题确实与路由器配置错误有关,更具体地说,与allow_migrate
有关,该路由器应该返回{ {1}}用于给定的模型,给定的应用程序和给定的数据库。
我相信这是由于True
命令的this line(Github上的Django源代码)引起的。