我对 django 还很陌生,我正在用它来制作一个在线游戏的网站。该游戏已经拥有自己的身份验证内容,因此我将其用作 django 的自定义身份验证模型。
我创建了一个名为“帐户”的新应用程序来放入这些东西并添加模型。我添加了路由器并在设置中启用了它,一切正常,我可以从管理站点登录并做一些事情。
现在我也在尝试学习 TDD,所以我需要将 auth 数据库转储到夹具中。当我运行时,./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']
我真的不知道要尝试什么,感谢任何帮助或想法。