Django - 当我更改网址时,CSS停止工作

时间:2015-08-22 20:41:02

标签: python css django url

所以我在我的网站上遇到了一个问题,然后我创建了两个单独的html页面。然后我编辑了urls.py,因此2页的网址会有所不同,但如果我这样做,css就会停止工作。我的代码如下,我将在以后详细解释。

我head.html的一部分

<!-- Bootstrap core CSS -->


<link href="../../static/textchange/index.css" rel="stylesheet">

<!-- Custom styles for this template -->
<link href="../../static/textchange/jumbotron.css" rel="stylesheet">

<!-- Just for debugging purposes. Don't actually copy these 2 lines! -->
<!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
<script src="../../static/textchange/index.js"></script>

我如何在每个html页面上包含头部

{% include "textchange/head.html" %}

导致问题的两个网址

url(r'^results/(?P<uisbn>(\w)+)/(?P<uuser>(\w)+)$', views.contactpost, name="contactpost"),
url(r'^results/(?P<uisbn>(\w)+)/(?P<uuser>(\w)+)$', views.contactwish, name="contactwish"),

所以上面是我的网址设置的时刻,我意识到这只会在此刻转到联系信息。当我改变这样的网址时:

url(r'^results/(?P<uisbn>(\w)+)/post/(?P<uuser>(\w)+)$', views.contactpost, name="contactpost"),
url(r'^results/(?P<uisbn>(\w)+)/wish/(?P<uuser>(\w)+)$', views.contactwish, name="contactwish"),

CSS停止为两个页面工作。

在我有2页之前,网址看起来像这样:

url(r'^results/(?P<uisbn>(\w)+)/(?P<uuser>(\w)+)$', views.contact, name="contact"),

Views.py

@login_required
def contactpost(request, uuser, uisbn):
    ltextbook = Textbook.objects.filter(isbn = uisbn)
    text = ltextbook[0]
    luser = User.objects.filter(username = uuser)
    quser = luser[0]
    post = Posting.objects.filter((Q(user = quser) & Q(textbook = ltextbook)))
    posting = post[0]
    return render_to_response(
        'textchange/contactpost.html',
        locals(),
        context_instance=RequestContext(request)
        )

@login_required
def contactwish(request, uuser, uisbn):
    ltextbook = Textbook.objects.filter(isbn = uisbn)
    text = ltextbook[0]
    luser = User.objects.filter(username = uuser)
    quser = luser[0]
    wish = Wishlist.objects.filter((Q(user = quser) & Q(textbook = ltextbook)))
    wishlist = wish[0]
    return render_to_response(
        'textchange/contactwish.html',
        locals(),
        context_instance=RequestContext(request)
        )

为什么CSS会停止工作?

感谢。

1 个答案:

答案 0 :(得分:7)

静态的URL上升了两个目录;但你的路径现在是三个目录深,所以URL错了。

您不应该为静态链接使用相对URL。相反,使用绝对的:

<link href="/static/textchange/index.css" rel="stylesheet">

更好的是,使用{% static %}标记,该标记从设置文件中获取STATIC_URL的值。

<link href="{% static "textchange/index.css" %}" rel="stylesheet">