简体   繁体   English

AttributeError:“模块”对象在Django项目中没有属性“ META”

[英]AttributeError: 'module' object has no attribute 'META' in Django Project

I am working on a blog in Python-Django. 我正在使用Python-Django撰写博客。 When I run the command "python manage.py runserver" in my project folder, I get following error: 当我在项目文件夹中运行命令“ python manage.py runserver”时,出现以下错误:

Traceback (most recent call last):
  File "manage.py", line 6, in <module>
    server = request.META.get('wsgi.file_wrapper', None)
AttributeError: 'module' object has no attribute 'META'

I have not seen this error anywhere. 我在任何地方都没有看到此错误。 Should I include Meta class in my installed_apps? 我应该在我的install_apps中包含Meta类吗? How do I do it? 我该怎么做?

Here is my manage.py: 这是我的manage.py:

#!/usr/bin/env python
import os
import sys
from django.http import request

server = request.META.get('wsgi.file_wrapper', None)
if server is not None and server.__module__ == 'django.core.servers.basehttp':
    print('inside dev')

if __name__ == "__main__":
    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "dj1.settings")

    from django.core.management import execute_from_command_line

    execute_from_command_line(sys.argv)

and settings.py: 和settings.py:

"""
Django settings for dj1 project.

For more information on this file, see
https://docs.djangoproject.com/en/1.7/topics/settings/

For the full list of settings and their values, see
https://docs.djangoproject.com/en/1.7/ref/settings/
"""

# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
import os
BASE_DIR = os.path.dirname(os.path.dirname(__file__))


# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.7/howto/deployment/checklist/

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = '(l8*%h2ids25q=x9qb7%x+(b=$1mm&yg8b5ga^0u2w9*+k%+9-'

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True

TEMPLATE_DEBUG = True

ALLOWED_HOSTS = []


# Application definition

INSTALLED_APPS = (
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'blog',
)

MIDDLEWARE_CLASSES = (
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.common.CommonMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
    'django.middleware.clickjacking.XFrameOptionsMiddleware',
)

ROOT_URLCONF = 'dj1.urls'

WSGI_APPLICATION = 'dj1.wsgi.application'


# Database
# https://docs.djangoproject.com/en/1.7/ref/settings/#databases

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
    }
}

# Internationalization
# https://docs.djangoproject.com/en/1.7/topics/i18n/

LANGUAGE_CODE = 'en-us'

TIME_ZONE = 'UTC'

USE_I18N = True

USE_L10N = True

USE_TZ = True


# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.7/howto/static-files/

STATIC_URL = '/static/'

TEMPLATE_DIRS = (
    os.path.join(BASE_DIR,  'templates'),
)

This is really a big code bulder. 这确实是一个大代码扩展器。

This piece of code here makes no sense inside the manage.py 这段代码在manage.py内部没有任何意义

from django.http import request

server = request.META.get('wsgi.file_wrapper', None)
if server is not None and server.__module__ == 'django.core.servers.basehttp':
    print('inside dev')

Perhaps you copied it from somewhere, and didn't put it where it belongs. 也许您是从某个地方复制它的,而没有将它放在它的位置。

This piece of coude would belong in a view. 这种观点是一种观点。 It will never work inside manage.py, and makes asolutely no sense there. 它永远不会在manage.py中工作,并且在那里绝对没有意义。

[EDIT] ALSO, in a view, you should NOT include the import, or you'll get the same error. [编辑],在视图中,你应该包括进口,否则你会得到同样的错误。 That means, don't include this from django.http import request 这意味着,不要包括from django.http import request

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Django Python3-AttributeError:“模块”对象没有属性“ META” - Django Python3 - AttributeError: 'module' object has no attribute 'META' AttributeError: 类型对象“Project”没有属性“_meta” - AttributeError: type object 'Project' has no attribute '_meta' Django AttributeError:“模型”对象没有属性“ _meta” - Django AttributeError: 'Model' object has no attribute '_meta' AttributeError&#39;module&#39;对象在django中没有属性&#39;runserver&#39; - AttributeError 'module' object has no attribute 'runserver' in django Django,AttributeError:“模块”对象没有属性 - Django, AttributeError: 'module' object has no attribute Django-AttributeError:“模块”对象没有属性“ admin” - Django - AttributeError: 'module' object has no attribute 'admin' AttributeError:&#39;模块&#39;对象没有属性&#39;ListCreateAPIVIEW&#39;Django - AttributeError: 'module' object has no attribute 'ListCreateAPIVIEW' Django AttributeError-模块&#39;django.http.request&#39;没有属性&#39;META&#39; - AttributeError - module 'django.http.request' has no attribute 'META' Django Rest Framework:AttributeError:&#39;NoneType&#39;对象没有属性&#39;_meta&#39;[for OneToOneField] - Django Rest Framework: AttributeError: 'NoneType' object has no attribute '_meta' [for OneToOneField] AttributeError: 'Serializer' object 在 django rest 框架中没有属性 'Meta' - AttributeError: 'Serializer' object has no attribute 'Meta' in django rest framework
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM