Django:在可以使用多对多关系之前,对象需要具有字段“...”的值

时间:2013-04-22 00:02:44

标签: sql django postgresql many-to-many models

我遇到了Django 1.5的奇怪错误: 我已经定义了如下模型:

class Company(models.Model): 
    user = models.OnetoOneField(User)
    agreed_to_terms = models.NullBooleanField(default=False) 
    address = models.CharField(_('Complete Address'), 
            max_length = 255, null = True, blank = True) 
    winning_bid = models.ForeignKey('Bid', 
            related_name='winning_bid', 
            blank = True, null = True)
    bid_list = models.ManyToManyField('Bid', 
            related_name='bids', 
            blank = True, null = True)
    ...

class Bid(models.Model):
    user = models.ForeignKey(User, null = True, blank = True)
    description = models.TextField(_('Description'), 
                            blank = True, null = True,)
    volume = models.DecimalField(max_digits=7, decimal_places=3,
            null=True, blank=True,)
    ...
    # all other attributes are of the Boolean, CharField or DecimalField type. No Foreignkeys, nor ManytoManyFields.

当我尝试通过Django管理员使用初始数据提交表单时,出现以下错误: 例外价值:
在使用这种多对多关系之前,“”需要为字段“公司”设置一个值。

请参阅下面的追溯。 错误消息对我来说没有多大意义。唯一的m2m关系是bid_list,即null = True,在保存时为空。 Django 1.5中有什么新东西,我在阅读更改日志时没有发现(这是我在Django 1.5中的第一个项目)吗?

有趣的是,当我在Django shell中保存对象时,我没有收到错误消息,但是没有任何错误消息就没有保存对象。

In [1]: user = User.objects.get(username='admin') 
In [2]: new_company = Company() 
In [3]: new_company.user = user 
In [4]: new_company.save() Out[4]: <Company: Company object> 
In [5]: foo = Company.objects.all()
Out[5]: []

当我尝试使用debug toolbar跟踪SQL语句时,我只能看到SQL SELECT语句,没有INSERT请求。

这种奇怪行为有什么解释?

回溯:

Request Method: POST
Request URL: /admin/company/company/add/

Django Version: 1.5.1
Python Version: 2.7.1
Installed Applications:
('django.contrib.admin',
 'django.contrib.admindocs',
 'django.contrib.auth',
 'django.contrib.contenttypes',
 'django.contrib.gis',
 'django.contrib.humanize',
 'django.contrib.sessions',
 'django.contrib.sites',
 'django.contrib.messages',
 'django.contrib.staticfiles',
 'django.contrib.admin',
 'django.contrib.admindocs',
 'crispy_forms',
 'django_extensions',
 'easy_thumbnails',
 'registration',
 'south',
 'company',
 'bid',
 'debug_toolbar')
Installed Middleware:
('django.middleware.common.CommonMiddleware',
 'django.contrib.sessions.middleware.SessionMiddleware',
 'django.middleware.csrf.CsrfViewMiddleware',
 'django.contrib.auth.middleware.AuthenticationMiddleware',
 'django.contrib.messages.middleware.MessageMiddleware',
 'debug_toolbar.middleware.DebugToolbarMiddleware')


Traceback:
File "/Users/neurix/Development/virtual/lib/python2.7/site-packages/django/core/handlers/base.py" in get_response
  115.                         response = callback(request, *callback_args, **callback_kwargs)
File "/Users/neurix/Development/virtual/lib/python2.7/site-packages/django/contrib/admin/options.py" in wrapper
  372.                 return self.admin_site.admin_view(view)(*args, **kwargs)
File "/Users/neurix/Development/virtual/lib/python2.7/site-packages/django/utils/decorators.py" in _wrapped_view
  91.                     response = view_func(request, *args, **kwargs)
File "/Users/neurix/Development/virtual/lib/python2.7/site-packages/django/views/decorators/cache.py" in _wrapped_view_func
  89.         response = view_func(request, *args, **kwargs)
File "/Users/neurix/Development/virtual/lib/python2.7/site-packages/django/contrib/admin/sites.py" in inner
  202.             return view(request, *args, **kwargs)
File "/Users/neurix/Development/virtual/lib/python2.7/site-packages/django/utils/decorators.py" in _wrapper
  25.             return bound_func(*args, **kwargs)
File "/Users/neurix/Development/virtual/lib/python2.7/site-packages/django/utils/decorators.py" in _wrapped_view
  91.                     response = view_func(request, *args, **kwargs)
File "/Users/neurix/Development/virtual/lib/python2.7/site-packages/django/utils/decorators.py" in bound_func
  21.                 return func(self, *args2, **kwargs2)
File "/Users/neurix/Development/virtual/lib/python2.7/site-packages/django/db/transaction.py" in inner
  223.                 return func(*args, **kwargs)
File "/Users/neurix/Development/virtual/lib/python2.7/site-packages/django/contrib/admin/options.py" in add_view
  1008.                 self.save_related(request, form, formsets, False)
File "/Users/neurix/Development/virtual/lib/python2.7/site-packages/django/contrib/admin/options.py" in save_related
  762.         form.save_m2m()
File "/Users/neurix/Development/virtual/lib/python2.7/site-packages/django/forms/models.py" in save_m2m
  84.                 f.save_form_data(instance, cleaned_data[f.name])
File "/Users/neurix/Development/virtual/lib/python2.7/site-packages/django/db/models/fields/related.py" in save_form_data
  1336.         setattr(instance, self.attname, data)
File "/Users/neurix/Development/virtual/lib/python2.7/site-packages/django/db/models/fields/related.py" in __set__
  910.         manager = self.__get__(instance)
File "/Users/neurix/Development/virtual/lib/python2.7/site-packages/django/db/models/fields/related.py" in __get__
  897.             through=self.field.rel.through,
File "/Users/neurix/Development/virtual/lib/python2.7/site-packages/django/db/models/fields/related.py" in __init__
  586.                                  (instance, source_field_name))

Exception Type: ValueError at /admin/company/company/add/
Exception Value: "<Company: Company object>" needs to have a value for field "company" before this many-to-many relationship can be used.

settings.py

import os, os.path, sys
DEBUG = True
TEMPLATE_DEBUG = DEBUG

# Setting up folders
abspath = lambda *p: os.path.abspath(os.path.join(*p))
PROJECT_ROOT = os.path.abspath(os.path.dirname(__file__))
TASK2_MODULE_PATH = abspath(PROJECT_ROOT, 'apps/')
sys.path.insert(0, TASK2_MODULE_PATH)

# Loading passwords
try:
    from settings_pwd import *
except ImportError:
    pass
AUTH_PROFILE_MODULE = 'profile.UserProfile'
#ALLOWED_HOSTS = [''] # not needed for DEBUG = True
TIME_ZONE = 'Europe/London'
LANGUAGE_CODE = 'en-uk'
LANGUAGES = [
        ("en", u"English"),
        ]
SITE_ID = 1
USE_I18N = True
USE_L10N = True
USE_TZ = True
if DEBUG:
    MEDIA_ROOT = os.path.join(PROJECT_ROOT, "site_media", "media")
else:
    MEDIA_ROOT = "folder_to_upload_files"
if DEBUG:
    MEDIA_URL = "/media/"
else:
    MEDIA_URL = "/media/uploads/"
if DEBUG:
    STATIC_ROOT = os.path.join(PROJECT_ROOT, "site_media","static")
else:
    STATIC_ROOT = "folder_to_static_files" 
STATIC_URL = '/static/'
STATICFILES_DIRS = (
    os.path.join(PROJECT_ROOT, "assets"),
)
STATICFILES_FINDERS = (
    'django.contrib.staticfiles.finders.FileSystemFinder',
    'django.contrib.staticfiles.finders.AppDirectoriesFinder',
)
SECRET_KEY = '...'
TEMPLATE_LOADERS = (
    'django.template.loaders.filesystem.Loader',
    'django.template.loaders.app_directories.Loader',)

MIDDLEWARE_CLASSES = (
    'django.middleware.common.CommonMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',)
ROOT_URLCONF = 'task2.urls'
WSGI_APPLICATION = 'task2.wsgi.application'
TEMPLATE_DIRS = (
    os.path.join(PROJECT_ROOT, "templates"),
    os.path.join(PROJECT_ROOT, "templates/pages"),)
INSTALLED_APPS = (
    # Django apps
    'django.contrib.admin',
    'django.contrib.admindocs',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.gis',
    'django.contrib.humanize',
    'django.contrib.sessions',
    'django.contrib.sites',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'django.contrib.admin',
    'django.contrib.admindocs',
    # third party apps
    'crispy_forms',
    'django_extensions',
    'easy_thumbnails',
    'registration',
    'south',

    # task2 apps
    'profile',
    'company',
)
AUTHENTICATION_BACKENDS = (
    'django.contrib.auth.backends.ModelBackend',
)

log = DEBUG 

if log:
    LOGGING = { 
        'version': 1,
        'disable_existing_loggers': True,
        'formatters': {
            'simple': {
                'format': '%(levelname)s %(message)s',
                },  
            },  
        'handlers': {
            'console':{
                'level':'DEBUG',
                'class':'logging.StreamHandler',
                'formatter': 'simple'
                },  
            },  
        'loggers': {
            'django': {
                'handlers': ['console'],
                'level': 'DEBUG',
                },  
            }   
        }    
####################
# THIRD PARTY SETUPS

# For Crispy Forms
CRISPY_FAIL_SILENTLY = not DEBUG
CRISPY_TEMPLATE_PACK = 'bootstrap'

## For Django Registration
ACCOUNT_ACTIVATION_DAYS = 7

# for Django testing to avoid conflicts with South migrations
SOUTH_TESTS_MIGRATE = False

# Debug_toolbar settings
if DEBUG:
    INTERNAL_IPS = ('127.0.0.1',)
    MIDDLEWARE_CLASSES += (
        'debug_toolbar.middleware.DebugToolbarMiddleware',
    )

    INSTALLED_APPS += (
        'debug_toolbar',
    )

    DEBUG_TOOLBAR_PANELS = (
        'debug_toolbar.panels.version.VersionDebugPanel',
        'debug_toolbar.panels.timer.TimerDebugPanel',
        'debug_toolbar.panels.settings_vars.SettingsVarsDebugPanel',
        'debug_toolbar.panels.headers.HeaderDebugPanel',
        #'debug_toolbar.panels.profiling.ProfilingDebugPanel',
        'debug_toolbar.panels.request_vars.RequestVarsDebugPanel',
        'debug_toolbar.panels.sql.SQLDebugPanel',
        'debug_toolbar.panels.template.TemplateDebugPanel',
        'debug_toolbar.panels.cache.CacheDebugPanel',
        'debug_toolbar.panels.signals.SignalDebugPanel',
        'debug_toolbar.panels.logger.LoggingPanel',
    )

    DEBUG_TOOLBAR_CONFIG = {
        'INTERCEPT_REDIRECTS': False,
    }

# Easy_Thumbnail setup
THUMBNAIL_ALIASES = {
    '': {
        'thumbnail': {'size': (50, 50), 'crop': True},
    },
}

2 个答案:

答案 0 :(得分:11)

问题与您使用视图的方式有关。 我认为你正在使用: instance.add(many_to_many_instance) 在您拥有实例ID之前。

首先保存您的模型:

instance.save()
instance.add(many_to_many_instance)

答案 1 :(得分:1)

您正在使用自定义用户模型AUTH_PROFILE_MODULE ='profile.UserProfile',但在代码中我假设您使用的是本机django用户。

我认为你的模型应该像

class Company(models.Model): 
    user = models.OnetoOneField('profile.UserProfile')
...

了解更多https://docs.djangoproject.com/en/1.5/ref/contrib/auth/#django.contrib.auth.models.User.get_profile