将准备好的模板(如bootstrap模板)添加到django项目中时。我改变了链接本地静态文件的所有src路径,例如javascript,css和images。我想自动执行此操作。有没有办法做到这一点?在我看来,使用正则表达式是可能的。但是直到现在我还不能
我把一些模式作为例子
<img src="images/slide-dark.jpg" alt="" >
<link href="css/animate.css" rel="stylesheet">
<script src="js/bootstrap.min.js"></script>
就像这样
<img src="{% static 'images/slide-dark.jpg' %}">
<link href="{% static 'css/animate.css' %}" rel="stylesheet">
<script src="{% static 'js/bootstrap.min.js' %}"></script>