静态文件的配合

第一种 :直接写死

第二种 :

{% load static %}  
    
    <link rel='stylesheet' href="{% static 'css/mycss.css'%}">  # 第二种方式

 

第三种 :

{% load static %}


<link rel='stylesheet' href="{% get_static_prefix %}css/mycss.css">  # 第三种方式
    

 

posted @ 2019-08-09 19:08  hui1019  阅读(92)  评论(0编辑  收藏  举报