NameError:未定义 Python 名称“BASE_DIR”如何修复?

Posted

技术标签:

【中文标题】NameError:未定义 Python 名称“BASE_DIR”如何修复?【英文标题】:NameError: Python name 'BASE_DIR' is not defined How To Fix? 【发布时间】:2021-01-24 19:51:07 【问题描述】:

我正在尝试部署我的网站,但图像无法加载,因为我遇到了这个错误 这导致我的图片无法加载到我的网站上,感谢您的帮助!

2020-10-09T18:19:09.937117+00:00 app[web.1]: File "/app/mysite/settings.py", line 20, in <module>
2020-10-09T18:19:09.937117+00:00 app[web.1]: STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
2020-10-09T18:19:09.937126+00:00 app[web.1]: NameError: name 'BASE_DIR' is not defined

我的设置.py

"""
Django settings for mysite project.
Generated by 'django-admin startproject' using Django 3.1.1.
For more information on this file, see
https://docs.djangoproject.com/en/3.1/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/3.1/ref/settings/
"""
import os


from pathlib import Path


# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve().parent.parent



STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')


STATIC_URL = '/static/'

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

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'a49c&2is^-d$y8ycdycbenh*@dm3$3phszrs_72c*fh-ti1449'

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = False # remember to change to false

ALLOWED_HOSTS = ['anim3-domain.herokuapp.com']
# 'https://anime-domain.herokuapp.com/'

# Application definition

INSTALLED_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'main.apps.MainConfig',
]

MIDDLEWARE = [
    'django.middleware.security.SecurityMiddleware',
    'whitenoise.middleware.WhiteNoiseMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.common.CommonMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
    'django.middleware.clickjacking.XFrameOptionsMiddleware',
]

ROOT_URLCONF = 'mysite.urls'

TEMPLATES = [
    
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [],
        'APP_DIRS': True,
        'OPTIONS': 
            'context_processors': [
                'django.template.context_processors.debug',
                'django.template.context_processors.request',
                'django.contrib.auth.context_processors.auth',
                'django.contrib.messages.context_processors.messages',
            ],
        ,
    ,
]

WSGI_APPLICATION = 'mysite.wsgi.application'


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

DATABASES = 
    'default': 
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': BASE_DIR / 'db.sqlite3',
    



# Password validation
# https://docs.djangoproject.com/en/3.1/ref/settings/#auth-password-validators

AUTH_PASSWORD_VALIDATORS = [
    
        'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
    ,
    
        'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
    ,
    
        'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
    ,
    
        'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
    ,
]


# Internationalization
# https://docs.djangoproject.com/en/3.1/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/3.1/howto/static-files/



STATICFILES_DIRS = [
    os.path.join(BASE_DIR, "static"),
]

我错过了什么吗?你能解释一下我该如何解决吗?谢谢!我不确定我是否忘记导入某些东西,或者我是否必须定义 BASE_DIR 如果是这样我将如何定义它?以及我需要导入什么

我的文件夹

enter image description here

【问题讨论】:

我们不知道这个错误发生在哪里。请发布完整的回溯错误消息。 是的,我添加了刷新页面 发生错误的行肯定不是您提供的文件中的第 18 行,因此您肯定运行的是不同版本的文件。 我又更新了页面 你在定义之前尝试使用BASE_DIR 3行,你怎么能期望它被定义?将有问题的行移到下面... 【参考方案1】:

因为您在 Heroku 上进行部署,所以您需要使用类似 whitenoise 的东西来提供您的静态文件。

http://whitenoise.evans.io/en/stable/django.html

另外:不要在互联网上发布您的密钥。

编辑添加,在部署到 Heroku 时也值得使用 https://github.com/pkrefta/django-on-heroku 之类的东西。

【讨论】:

我已经在使用 whitenoise 来提供我的 satic 文件 现在你编辑了它哈哈,当我最初发表评论时它不在那里。感谢更新。 @lillymosling 你能解决它吗?在部署中访问静态文件可能是一个令人沮丧的问题,但通常很容易解决。 是的,我做到了!但现在我遇到了一个新问题,我的图片无法加载到我的网站上 @lillymosling 你跑过python manage.py collectstatic 吗?这应该在 Heroku 构建程序时运行,但我发现这并不总是完全正确的。【参考方案2】:

你必须尝试在setting.py上将函数os从python库导入django

【讨论】:

他们已经这样做了,正如您在发布的代码中看到的那样。此外,不这样做不会导致显示的错误。

以上是关于NameError:未定义 Python 名称“BASE_DIR”如何修复?的主要内容,如果未能解决你的问题,请参考以下文章

NameError:名称'python'未定义[关闭]

Python / Access NameError:名称''未定义

Python 3:NameError:未定义名称“sklearn”

NameError:名称“转子”未定义

NameError:未定义全局名称“PermissionError”(python 2.x)

Python NameError:名称未定义