我正在阅读 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)
当我运行代码时,底部函数是被调用的函数。这是如何运作的?