使用Django时,如何在我的html模板中添加外部CSS / js
我已经尝试过回答一些以前提出的问题,但是似乎它们已经过时了,下面是我遵循的步骤之一
# after making sure the installed app has contrib.static then i make a file called static/my_apps/my.css
{%loadstatic%}
<link rel='stylesheet' href="{%static 'my_apps/my.css' %}">
# i also tried {%loadstaticfile%} but none work
答案 0 :(得分:0)
在创建项目时,您具有特定的django文件夹层次结构以及创建模板文件夹的位置,请在同一位置创建名称为 static 的文件夹,并添加所有静态文件(js / css / images)。然后在访问时使用 static 标记在模板中进行访问。 {%static'path / to / your / static / files'%} 此路径django引擎从静态文件夹中获取。