0

djangoアプリケーションモジュールをインストールしています。このエラーが発生します。別のMicroInstanceを起動してすべてを再インストールしましたが、それでもこのエラーが発生します。。

Environment:


Request Method: GET
Request URL: http://54.235.127.252/mds/

Django Version: 1.3.1
Python Version: 2.7.3
Installed Applications:
['sana.mrs',
 'django.contrib.auth',
 'django.contrib.contenttypes',
 'django.contrib.sessions',
 'django.contrib.sites',
 'django.contrib.admin']
Installed Middleware:
('django.middleware.common.CommonMiddleware',
 'django.contrib.sessions.middleware.SessionMiddleware',
 'django.contrib.auth.middleware.AuthenticationMiddleware',
 'sana.mrs.util.LoggingMiddleware')


Traceback:
File "/usr/lib/python2.7/dist-packages/django/core/handlers/base.py" in get_response
  101.                             request.path_info)
File "/usr/lib/python2.7/dist-packages/django/core/urlresolvers.py" in resolve
  250.             for pattern in self.url_patterns:
File "/usr/lib/python2.7/dist-packages/django/core/urlresolvers.py" in _get_url_patterns
  279.         patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
File "/usr/lib/python2.7/dist-packages/django/core/urlresolvers.py" in _get_urlconf_module
  274.             self._urlconf_module = import_module(self.urlconf_name)
File "/usr/lib/python2.7/dist-packages/django/utils/importlib.py" in import_module
  35.     __import__(name)
File "/opt/sana/urls.py" in <module>
  12. admin.autodiscover()
File "/usr/lib/python2.7/dist-packages/django/contrib/admin/__init__.py" in autodiscover
  26.             import_module('%s.admin' % app)
File "/usr/lib/python2.7/dist-packages/django/utils/importlib.py" in import_module
  35.     __import__(name)
File "/opt/sana/mrs/admin.py" in <module>
  26. admin.site.register(ClientEventLog, ClientEventLogAdmin)
File "/usr/lib/python2.7/dist-packages/django/contrib/admin/sites.py" in register
  97.             validate(admin_class, model)
File "/usr/lib/python2.7/dist-packages/django/contrib/admin/validation.py" in validate
  24.     validate_base(cls, model)
File "/usr/lib/python2.7/dist-packages/django/contrib/admin/validation.py" in validate_base
  279.             check_formfield(cls, model, opts, 'exclude', field)
File "/usr/lib/python2.7/dist-packages/django/contrib/admin/validation.py" in check_formfield
  369.                 "is missing from the form." % (cls.__name__, label, field))

Exception Type: ImproperlyConfigured at /
Exception Value: 'ClientEventLogAdmin.exclude' refers to field 'created' that is missing from the form.

注:このアプリケーションをインストールする必要があります。私はPythonの中間であり、Djangoの初心者ですが、PHP、mysql、およびjQueryのフロントエンドの専門家です。

4

1 に答える 1

0

私が見るところ、問題はフレームワークに関連している可能性がありますmoca

ファイル/opt/sana/mrs/admin.pyが次のようになっている場合、原因は12行目にある可能性があります。createdフィールドは除外リストで参照されていますが、以前は定義されていません。

私はあなたのニーズについてよくわからないので、ここにあなたが試すことができるいくつかの解決策があります:

  • mocaフレームワードを再インストールまたは更新します;
  • 実行定義の前にコードを追加します(ただし、どのタイプにする必要があるかはわかりません):

    from django.db import models # You may also place it in the top of the file
    created = models.DateField(blank=True, null=True)
    
  • createdリストからアイテムを削除しますexclude(ただし、影響についてはわかりません)

それが役に立てば幸い、

于 2013-02-07T13:51:52.893 に答える