错误问题 * 发生服务器错误。请联系管理员 * django rest framework
Posted
技术标签:
【中文标题】错误问题 * 发生服务器错误。请联系管理员 * django rest framework【英文标题】:Problem with the error * A server error occurred. Please contact the administrator * django rest framework 【发布时间】:2020-10-25 09:44:34 【问题描述】:我正在尝试测试一些基本的支持功能,但我似乎遇到了这个错误发生了服务器错误。请在尝试连接到本地主机http://127.0.0.1:8000 或http://127.0.0.1:8000/sise/ 时联系管理员。
起初我有这个错误显示 django.core.exceptions.ImproperlyConfigured: The included URLconf 'Dashboard_sise.urls' 似乎没有任何模式。如果您在文件中看到有效模式,则问题可能是由循环导入引起的。 但是在我在设置文件 ROOT_URLCONF = 'Dashboard_sise.urls' 中评论了这一行之后,错误发生了变化发生服务器错误。请联系管理员。
谁能帮我解决这个问题,我已经尝试更改 urls.py 文件中的 urlpatterns 但它不起作用,我还尝试操作设置文件中的 MIDDLEWARE 部分但没有任何改变。
这是 Dashboard_sise.urls 代码
from django.contrib import admin
from django.urls import include, path
urlpatterns = [
path('admin/', admin.sites.urls),
path('sise/', include('Dashboard.urls')),
]
这是 Dashboard.urls 代码
from rest_framework.routers import DefaultRouter
from Dashboard.views import *
router = DefaultRouter()
router.register(r'accee', AcceeViewSet, basename='accee')
router.register(r'rapport', RapportViewSet, basename='rapport')
router.register(r'prise_fonction', PointageUtilisateurViewSet, basename='prise_fonction')
urlPatterns = router.urls
最后是设置文件
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/3.0/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = '+f-@$j*(-8^*7ijk@6_hpki@)am4e%na6ttp)54@-ddcs0#fgy'
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
ALLOWED_HOSTS = ['*']
PREPEND_WWW = False
# Application definition
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'rest_framework',
'corsheaders',
'Dashboard',
'frontend'
]
MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
'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',
'corsheaders.middleware.CorsMiddleware',
]
TEMPLATES = [
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'templates')]
,
'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 = 'Dashboard_sise.wsgi.application'
'''ROOT_URLCONF = 'Dashboard_sise.urls'''
# Database
# https://docs.djangoproject.com/en/3.0/ref/settings/#databases
DATABASES =
'default':
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'MainCourante',
'USER': 'postgres',
'PASSWORD': 'root',
'HOST': 'localhost',
'PORT': '5432',
# Password validation
# https://docs.djangoproject.com/en/3.0/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.0/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
APPEND_SLASH = False
# Static files (CSS, javascript, Images)
# https://docs.djangoproject.com/en/3.0/howto/static-files/
STATIC_URL = '/static/'
'''REST_FRAMEWORK =
'DEFAULT_RENDERER_CLASSES': (
'rest_framework.renderers.JSONRenderer',
'rest_framework.authentification.BasicAuthentification'
'rest_framework.authentification.SessionAuthentification'
# 'rest_framework.permissions.IsAuthentificated'
# 'rest_framework.permissions.AllowAny'
)
'''
CORS_ORIGIN_ALLOW_ALL = True # If this is used then `CORS_ORIGIN_WHITELIST` will not have any effect
提前谢谢你
【问题讨论】:
第一个错误可能是主要问题,它表示可能存在循环导入。也许您可以在 urls 文件中包含完整的代码。 我编辑了代码,现在我只尝试在 Dashboard.urls 代码中测试这 03 个 url 【参考方案1】:如果有人遇到同样的错误,我会回答这个问题。我的数据库结构有问题..在models.py文件中实现的模型和创建的数据库不匹配,所以它一直向我显示这个错误......一旦我修复了models.py文件,它就一切正常
【讨论】:
【参考方案2】:也许这就是原因。
urlPatterns = router.urls
通常是urlpatterns
。
【讨论】:
我在两个 urls 文件中都更改了它,但仍然显示错误 感谢您的时间和精力帮助我,我解决了...问题出在数据库结构中,与错误显示的 url.py 无关跨度>以上是关于错误问题 * 发生服务器错误。请联系管理员 * django rest framework的主要内容,如果未能解决你的问题,请参考以下文章
发生未知错误,请确认!系统发生错误,错误代码:0x80070005,请联系当地经销商或者致电8598000-8382!
无法在 Google Cloud 中创建项目:“管理员已禁用云服务。请联系管理员恢复服务”