常见错误:WSGI application 'xx.application' could not be loaded; Error importing module
创建django项目,在前后端联调时,会出现这样的错误,不要慌
看到类似的错误,我们就往上滑动鼠标,看到这样的提示(少写了s)
一般都会出现XXXError:后面的内容就是你写错的单词,然后去配置里改对应的单词
还有这样比如这样的
File "C:\Users\14050\AppData\Local\Programs\Python\Python37\lib\site-packages\django\core\management\commands\runserver.py", line 64, in get_handler
return get_internal_wsgi_application()
File "C:\Users\14050\AppData\Local\Programs\Python\Python37\lib\site-packages\django\core\servers\basehttp.py", line 50, in get_internal_wsgi_application
) from err
django.core.exceptions.ImproperlyConfigured: WSGI application 'day10c.wsgi.application' could not be loaded; Error importing module.
我们就往上找(少写了m)
ModuleNotFoundError: No module named 'corsheaders.iddleware'
The above exception was the direct cause of the following exception: