AttributeError:模块 'django.contrib.postgres.fields' 没有属性 'JSONField'
Posted
技术标签:
【中文标题】AttributeError:模块 \'django.contrib.postgres.fields\' 没有属性 \'JSONField\'【英文标题】:AttributeError: module 'django.contrib.postgres.fields' has no attribute 'JSONField'AttributeError:模块 'django.contrib.postgres.fields' 没有属性 'JSONField' 【发布时间】:2018-04-05 13:13:59 【问题描述】:从 GitHub repo 安装项目并收到以下错误
File "/Users/TheKotik/closer/blog/models.py", line 5, in <module>
from rest_framework import serializers
File "/Users/TheKotik/closer/denv/lib/python3.5/site-packages/rest_framework/serializers.py", line 1534, in <module>
ModelSerializer.serializer_field_mapping[postgres_fields.JSONField] = JSONField
AttributeError: module 'django.contrib.postgres.fields' has no attribute 'JSONField'
不知道它与什么有关。请帮忙..
整个回溯:
File "manage.py", line 10, in <module>
execute_from_command_line(sys.argv)
File "/Users/TheKotik/closer/denv/lib/python3.5/site-packages/django/core/management/__init__.py", line 338, in execute_from_command_line
utility.execute()
File "/Users/TheKotik/closer/denv/lib/python3.5/site-packages/django/core/management/__init__.py", line 312, in execute
django.setup()
File "/Users/TheKotik/closer/denv/lib/python3.5/site-packages/django/__init__.py", line 18, in setup
apps.populate(settings.INSTALLED_APPS)
File "/Users/TheKotik/closer/denv/lib/python3.5/site-packages/django/apps/registry.py", line 108, in populate
app_config.import_models(all_models)
File "/Users/TheKotik/closer/denv/lib/python3.5/site-packages/django/apps/config.py", line 198, in import_models
self.models_module = import_module(models_module_name)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/importlib/__init__.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 986, in _gcd_import
File "<frozen importlib._bootstrap>", line 969, in _find_and_load
File "<frozen importlib._bootstrap>", line 958, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 673, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 665, in exec_module
File "<frozen importlib._bootstrap>", line 222, in _call_with_frames_removed
File "/Users/TheKotik/closer/blog/models.py", line 5, in <module>
from rest_framework import serializers
File "/Users/TheKotik/closer/denv/lib/python3.5/site-packages/rest_framework/serializers.py", line 1534, in <module>
ModelSerializer.serializer_field_mapping[postgres_fields.JSONField] = JSONField
AttributeError: module 'django.contrib.postgres.fields' has no attribute 'JSONField'
【问题讨论】:
把你用的版本和github的对比一下告诉我 ^^ JSONField 是在 Django 1.9 中引入的,如果你使用的东西少于这个,你就不会拥有它。 @wpercy django 版本是 1.8 【参考方案1】:您的 Django 版本太低。 JSONField
是在 Django 1.9 (release notes) 中添加的,因此您需要升级才能使用 JSONField
【讨论】:
我需要更新生产中的项目,所以我也必须在那里更新 django 版本? 1.8没有办法停留? 如果您想使用JSONField
,请不要这样做。它实际上在 1.9 之前并不存在。如果您的项目有一个从中构建的 requirements.txt 文件,您应该能够在其中更新版本号。以上是关于AttributeError:模块 'django.contrib.postgres.fields' 没有属性 'JSONField'的主要内容,如果未能解决你的问题,请参考以下文章
AttributeError:模块 'django.contrib.postgres.fields' 没有属性 'JSONField'
AttributeError:模块 Django.contrib.auth.views 没有属性
AttributeError:模块'django.contrib.auth.views'没有属性'LoginView'
开始芹菜:AttributeError:“模块”对象没有属性“芹菜”