Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Django 创建一个网站,在一部分中,我需要在 url 中有两个获取请求 - 一个称为“搜索”,一个称为“页面”。我试过以下 -
return HttpResponseRedirect('/explore/?search=test/?page=1')
但是,'/?page=1' 被包含在搜索中,这把它搞砸了。有什么方法可以将它们保持为两个不同的,还是我必须将它们融合为一个?
像这样做:
return HttpResponseRedirect('/explore/?search=test&page=1')
并且鉴于您可以将这两个参数获取为:
search = request.GET.get('search') page = request.GET.get('page')