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 は、通常の Python 文字列として、要求された URL に対して検索します。これには、GET または POST パラメーター、またはドメイン名は含まれません。

ソース

于 2012-04-20T05:06:21.453 に答える