标签:ase class django example 静态文件 静态 os.path 目录 path
STATIC_URL = ‘/static/‘
STATICFILES_DIRS = [
os.path.join(BASE_DIR, ‘static‘),
]
mysite/static/myapp/
/static/my_app/myexample.jpg
{ % load static from staticfiles %}
<img src="{ % static "my_app/myexample.jpg" %}" alt="My image"/>
标签:ase class django example 静态文件 静态 os.path 目录 path
原文地址:https://www.cnblogs.com/alexzhang92/p/9529745.html