标签:files 不能 django 很多 images 静态 ges tps loading
很多教程没教对,导致Django中的图片不能正确的显示出来,经过多次踩坑,发现如下方法可以解决该问题。
1.setting.py中添加:
STATIC_URL = ‘/static/‘ STATICFILES_DIRS=[ os.path.join(BASE_DIR,‘static‘).replace(‘\\‘,‘/‘) ]
注意在这里BASE_DIR在setting.py中为:
<img src= "/static/images/profile.jpg" alt="profile">
3.显示如下:
显示成功
标签:files 不能 django 很多 images 静态 ges tps loading
原文地址:https://www.cnblogs.com/johnyang/p/13269987.html