0

我在 c.html (http://localhost:8000/practice/c) 中,然后单击一个将我的 url 更改为的链接

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 有问题吗?

4

1 回答 1

0

URLconf 搜索的内容

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

来源

于 2012-04-20T05:06:21.453 回答