8

我对 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']

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

4

4 回答 4

5

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

$ ./manage.py dumpdata --database=auth_db account
于 2013-11-05T13:04:11.113 回答
3

我有类似的问题。创建一个名为的空文件models.py为我解决了这个问题。检查您的应用程序目录中是否有这样的文件,如果没有 - 创建一个。

于 2017-10-03T08:56:27.120 回答
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
于 2015-04-22T10:33:12.663 回答
0

我有一个类似的问题,另一个 Stackoverflow 线程中的这个旧答案对我的帮助超过了上面的答案:这个问题确实与我的路由器配置错误有关,更具体地说allow_migrate,应该返回True给定模型、给定应用程序和给定数据库。

我相信这是由于command 的这一行(Github 上的 Django 源代码)所致dumpdata

于 2020-06-12T10:13:11.840 回答