2017-12-03 11 views
0

HTMLページの画像をロードすることができません:私は、上記の設定を使用してイメージをロードしようとするとも、適切なコンフィギュレーション後のDjangoの静的フォルダから

<body> 
     {% load static %} 
    <section class="hero is-success is-fullheight"> 
    <div class="hero-body"> 
     <div class="container has-text-centered"> 
     <div class="column is-4 is-offset-4"> 
      <h3 class="title has-text-grey">Login</h3> 
      <div class="box"> 
      <figure class="avatar"> 
       <img src="{% static 'images/abc.png' %}"> 
      </figure> 

Settings.py設定

# Static files (CSS, JavaScript, Images)STATIC_URL = '/static/' 
STATIC_URL = '/static/' 
#STATIC_URL = os.path.join(BASE_DIR, "static/") 
STATIC_ROOT = '/staticfiles/' 
#STATIC_ROOT = os.path.join(BASE_DIR, "static/") 

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

を。私はその回答を得ることができません。エラーが

"GET http://127.0.0.1:8000/static/images/abc.png 404 (Not Found)" 

Attached the image of my django architecture. Please help me resolve this issue.

のように感謝を投げています!

答えて

0

installed_appsにプロジェクト名を追加するのを忘れました

私はそれを追加しました!

関連する問題