渲染时捕获NoReverseMatch:反向'accounts.views.new_fn',参数'()'和关键字参数'{'student_pk': ***** }'未找到。 (星号实际上是数字,我只是编辑它们。)
无论如何,我无法弄清楚为什么这不起作用。在谷歌搜索这个错误似乎这来自没有正确定义的网址,但是,我不知道是怎么回事!像往常一样,感谢您的帮助!
(r'^lockers/(?P<course_pk>\w+)/$', 'lockers'),
(r'^lockers/(?P<course_pk>\w+)/assignlocker/$', 'lockerassign'),
来自views.py
@user_is_valid
def lockers(request, course_pk):
print("Lockers - A")
course = get_object_or_404(Course, pk=course_pk)
students = Student.objects.filter(--redacted, but this does work)
print("Render to Response - B")
return render_to_response("accounts/locker_roster.html", {'students':students, 'lockers':orderedlockers}, context_instance=RequestContext(request))
@user_is_valid
def lockerassign(request,student_pk):
if request.method == "POST":
print("Method is Post - C")
pass
else:
print("Render form - D")
lockers = Locker.objects.raw(sql query, which does in fact work)
student = Student.object.get(pk=student_pk)
print("Render to Response - E")
return render_to_response("accounts/locker_assign.html",{'student':student , 'lockers':lockers} , context_instance=RequestContext(request))
来自locker_roster.html
{%for student in students%}
<tr>
<td>{{student}}</td>
<td style="text-align: right">
<a href="{% url accounts.views.lockerassign student_pk=student.pk%}">Assign Locker</a>
</td>
</tr>
{%endfor%}
注意:Google Chrome会在学生的迭代中标记错误。
答案 0 :(得分:0)
要使用{% url %}
标记,您需要将name
属性添加到您的网址,以便Django能够撤消它们:
(r'^lockers/(?P<course_pk>\w+)/$', name='lockers'),
(r'^lockers/(?P<course_pk>\w+)/assignlocker/$', name='lockerassign'),
要测试您是否正确使用了它们,请使用:django.core.urlresolvers.reverse()
。
答案 1 :(得分:0)
在urlconf中为URL指定了name
属性后,您需要使用该名称而不是函数路径来反转它。
{% url lockerassign student_pk=student.pk %}
(我假设您最初没有使用引号,因为您使用的是Django&lt; 1.5。如果您使用的是更高版本,则应将视图名称放在引号中。)