多标签问题

发布于 2024-12-02 04:59:32 字数 541 浏览 1 评论 0原文

如果我有 url "/tagged/something/" 那么它很好,但如果我有 "/tagged/something1-something2/" 它告诉我该页面是未找到且 url 不匹配任何内容。

urls.py
url(r'^tagged/(?P\w+)/$', 'show_tagged'),

views.py

def show_tagged(request, tags):
    tags = tags.replace(',', '').split('-') 
    items = TaggedItem.objects.get_intersection_by_model(Item, tags)
    return render_to_response('tagged.html', {'items': items}, context_instance=RequestContext(request))

我该如何解决这个问题?

If i have url "/tagged/something/" then it is good, but if i have "/tagged/something1-something2/" it tells me that that page is not found and url didn't matching anything.

urls.py
url(r'^tagged/(?P<tags>\w+)/$', 'show_tagged'),

views.py

def show_tagged(request, tags):
    tags = tags.replace(',', '').split('-') 
    items = TaggedItem.objects.get_intersection_by_model(Item, tags)
    return render_to_response('tagged.html', {'items': items}, context_instance=RequestContext(request))

How can i fix this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦幻的心爱 2024-12-09 04:59:32

你能尝试改变你的正则表达式吗?我认为以下一项会起作用:

url(r'^tagged/(?P<tags>[\w-]+)/
, 'show_tagged'),

Can you try changing your regex? I think the following one will work:

url(r'^tagged/(?P<tags>[\w-]+)/
, 'show_tagged'),
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文