Django URL 跟踪其他文件 URLs
Django URL trails other file URLs
我正在 Django 上构建网站。问题来了:
url.py :
url(r'^product/(?P<slug>[-_\w]+)/$', ProductView.as_view(), name='product'),
这个URL调用product/product-slug成功,但是影响了其他文件'
网址。错误消息是:
"GET /product/lenovo-tv/static/css/bootstrap.min.css HTTP/1.1" 404 4862
我错过了什么?
base.html :
<link href="static/css/bootstrap.min.css" rel="stylesheet"/>
<link href="static/css/font-awesome.min.css" rel="stylesheet">
<link href="static/css/custom-styles.css" rel="stylesheet">
{% load static %}
<link href="{% static 'css/bootstrap.min.css' %}" rel="stylesheet"/>
<link href="{% static 'css/font-awesome.min.css' %}" rel="stylesheet">
<link href="{% static 'css/custom-styles.css' %}" rel="stylesheet">
在您的 html 中为 css
和 js
使用这样的静态文件
我正在 Django 上构建网站。问题来了:
url.py :
url(r'^product/(?P<slug>[-_\w]+)/$', ProductView.as_view(), name='product'),
这个URL调用product/product-slug成功,但是影响了其他文件' 网址。错误消息是:
"GET /product/lenovo-tv/static/css/bootstrap.min.css HTTP/1.1" 404 4862
我错过了什么? base.html :
<link href="static/css/bootstrap.min.css" rel="stylesheet"/>
<link href="static/css/font-awesome.min.css" rel="stylesheet">
<link href="static/css/custom-styles.css" rel="stylesheet">
{% load static %}
<link href="{% static 'css/bootstrap.min.css' %}" rel="stylesheet"/>
<link href="{% static 'css/font-awesome.min.css' %}" rel="stylesheet">
<link href="{% static 'css/custom-styles.css' %}" rel="stylesheet">
在您的 html 中为 css
和 js