3

我是 Django 新手,我遇到了 NoReverseMatch 错误。有谁知道我该如何解决这个问题?

异常值:未找到带有参数“()”和关键字参数“{}”的“profile_list.html”的反向。

edit_profile.html

<h1>Add Profile</h1>

<form action="{% url 'questions-new' %}" method="POST">
  {% csrf_token %}
  <ul>
    {{ form.as_ul }}
  </ul>
  <input type="submit" value="Save" />
</form>

<a href="{% url 'profile-list' %}">back to list</a>

网址.py

from django.conf.urls import patterns, include, url

import questions.views

urlpatterns = patterns('',
    url(r'^$', questions.views.ListProfileView.as_view(),
        name='profile-list'),
    url(r'^new$', questions.views.CreateProfileView.as_view(),
        name='questions-new',),
)

视图.py

from django.views.generic import ListView

from questions.models import Profile

from django.core.urlresolvers import reverse
from django.views.generic import CreateView

class ListProfileView(ListView):
    model = Profile
    template_name = 'profile_list.html'

class CreateProfileView(CreateView):

    model = Profile
    template_name = 'edit_profile.html'

    def get_success_url(self):
        return reverse('profile_list.html')
4

2 回答 2

5

get_success_url错了。将其更改为以下内容:

def get_success_url(self):
    return reverse('profile-list')

reverse应该与您在urls.py模式中提供的名称而不是模板名称一起使用。

于 2013-06-29T20:30:51.967 回答
2

你的reverse电话不正确。根据文档

反向(视图名 [,urlconf=None,args=None,kwargs=None,current_app=None])

viewname 是函数名称(函数引用或名称的字符串版本,如果您在 urlpatterns 中使用该形式)或 URL 模式名称。

所以,更换

reverse('profile_list.html')

reverse('profile-list')

profile-list是您在 中定义的 URL 模式名称urls.py

希望有帮助。

于 2013-06-29T20:31:04.230 回答