gpt4 book ai didi

python - 在 Django settings.py 文件中指定 STATIC_ROOT STATIC_URL 时出错

转载 作者:太空宇宙 更新时间:2023-11-04 10:49:13 25 4
gpt4 key购买 nike

我是 Django 和 Web 应用程序开发的新手。我正在尝试将 css 添加到我的演示站点(在 Windows7 上使用 django v1.4)并收到以下错误。我都试过了,浪费了将近 3-4 个小时。还是没能解决。

我想我犯了一些愚蠢的错误,谁能告诉我我在哪里犯了错误。

无论我做什么

http://localhost:8000/static/css.css

python manage.py collectstatic

我得到:

TypeError: coercing to Unicode: need string or buffer, tuple found

setting.py 文件是:

import os
PROJECT_PATH = os.path.abspath(os.curdir).replace('\\', '/')

DEBUG = True
TEMPLATE_DEBUG = DEBUG

ADMINS = (
# ('Your Name', 'your_email@example.com'),
)

MANAGERS = ADMINS

DATABASES = {
'default': {
'ENGINE' : 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
'NAME' : 'ecomstore', # Or path to database file if using sqlite3.
'USER' : 'vivek', # Not used with sqlite3.
'PASSWORD' : 'linux', # Not used with sqlite3.
'HOST' : '', # Set to empty string for localhost. Not used with sqlite3.
'PORT' : '', # Set to empty string for default. Not used with sqlite3.
}
}

TIME_ZONE = 'America/Chicago'
LANGUAGE_CODE = 'en-us'
SITE_ID = 1
USE_I18N = True
USE_L10N = True
USE_TZ = True
MEDIA_ROOT = ''
MEDIA_URL = ''
STATIC_ROOT = os.path.join(PROJECT_PATH,'static').replace('\\', '/'),
STATIC_URL = '/static/'

STATICFILES_DIRS = (
os.path.join(PROJECT_PATH, 'static').replace('\\', '/'),
)

STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
'django.contrib.staticfiles.finders.DefaultStorageFinder',
)

SECRET_KEY = 'dyi(9i9e*oy#7o#-z$vcnk%d$2)n!)t=3(cqo5=prtp$7e2(*h'

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 = 'ecomstore.urls'

WSGI_APPLICATION = 'ecomstore.wsgi.application'

TEMPLATE_DIRS = (
os.path.join(PROJECT_PATH, 'templates').replace('\\', '/'),
)

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

LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'filters': {
'require_debug_false': {
'()': 'django.utils.log.RequireDebugFalse'
}
},
'handlers': {
'mail_admins': {
'level': 'ERROR',
'filters': ['require_debug_false'],
'class': 'django.utils.log.AdminEmailHandler'
}
},
'loggers': {
'django.request': {
'handlers': ['mail_admins'],
'level': 'ERROR',
'propagate': True,
},
}
}

最佳答案

STATIC_ROOT   = os.path.join(PROJECT_PATH,'static').replace('\\', '/'),

去掉行尾的,

关于python - 在 Django settings.py 文件中指定 STATIC_ROOT STATIC_URL 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15040584/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com