首先,在manager.py同层级下创建static文件夹, 里面放上css , js, image等文件或者文件夹
第二,在项目同名的app中settings文件末尾添加以下内容:
STATIC_URL = ‘/static/‘ HERE = os.path.dirname(os.path.abspath(__file__)) HERE = os.path.join(HERE, ‘../‘) STATICFILES_DIRS = ( # Put strings here, like "/home/html/static" or "C:/www/django/static". # Always use forward slashes, even on Windows. # Don‘t forget to use absolute paths, not relative paths. os.path.join(HERE, ‘static/‘), )
第三,在需要使用的html文件中通过以下方式导入
<link rel="stylesheet" href="../static/style/helloform.css" /> <script type="text/javascript" src="../static/javascript/helloform.js"></script>
不需要修改urls.py文件
这样即可引用js,css等文件
原文地址:https://www.cnblogs.com/JoinAJR8194/p/8676207.html
时间: 2024-10-11 01:49:53