基于django中的GET请求参数进行定向

时间:2012-04-20 04:37:53

标签: django django-urls

我在c.html(http:// localhost:8000 / practice / c),然后点击一个将我的网址更改为

的链接

http://localhost:8000/practice/c/?q=1

这是urls.py

url(r'^$', prac_c),
url(r'^q=\d',fetch_c),

这是views.py

def prac_c(request):
    return render_to_response('subject/c.html', {"problem_list":problem_list})
def fetch_c(request):
        qno = request.GET.get('q')
        if qno:
            return render_to_response('subject/que.html', {'qno':qno}, context_instance=RequestContext(request))

但我没有被引导到que.html。 urls.py出了什么问题?

1 个答案:

答案 0 :(得分:0)

  

URLconf搜索的内容

     

URLconf搜索请求的URL,作为普通的Python字符串。这不包括GET或POST参数或域名。

source