私はdjangoチュートリアルを行っていますが、views.pyに同じ名前の関数が2つあるとどうなるのでしょうか?
例えば:
def results(request, poll_id):
p = get_object_or_404(Poll, pk=poll_id)
return render_to_response('polls/results.html', {'poll': p})
def results(request, poll_id):
return HttpResponse("You're looking at the results of poll %s." % poll_id)
コードを実行すると、一番下の関数が呼び出されました。これはどのように作動しますか?