在Django中,靜態文件(例如CSS、JavaScript、圖片等)的處理可以通過以下步驟來實現:
STATIC_URL = '/static/'
STATICFILES_DIRS = [
os.path.join(BASE_DIR, 'static'),
]
<link rel="stylesheet" href="{% static 'css/style.css' %}">
<script src="{% static 'js/script.js' %}"></script>
from django.shortcuts import render
def my_view(request):
return render(request, 'my_template.html')
{% load static %}
python manage.py collectstatic
通過以上步驟,Django就能夠正確處理靜態文件,使其能夠在頁面中正確顯示和加載。