python - 用uWSGI测试Django项目,找不到static里面的静态文件
大家讲道理
大家讲道理 2017-04-18 09:14:15
0
2
908

运行:

uwsgi --http :8080 --module DDoS.wsgi

然后访问localohsot:8080/ddos/加载不出静态文件

我的项目目录结构:

配置文件STATIC路由:

Django Version == 1.7.6

请问如何解决?谢谢

大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

répondre à tous(2)
黄舟

J'ai déjà rencontré des problèmes similaires et la solution est la suivante (à titre de référence uniquement) :

urls.py

from django.conf.urls import include, url
from django.contrib import admin
from django.conf.urls.static import static
from django.conf import settings

urlpatterns = [
                  url(r'^admin/', include(admin.site.urls)),
              ] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT) + static(settings.MEDIA_URL,document_root=settings.MEDIA_ROOT)

settings.py

BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
                                                                                           
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'backend/static')

MEDIA_URL = '/upload/'
MEDIA_ROOT = os.path.join(BASE_DIR, 'backend/upload')
左手右手慢动作

les paramètres configurent STATIC_URL et STATICFILES_DIRS

BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
STATIC_URL = '/static/'
STATICFILES_DIRS = (
    os.path.join(BASE_DIR, 'static'),
)

Écrivez ceci sur la page des modèles

<script src="{{ STATIC_URL }}js/xxx.js"></script>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal