我正在使用由用户填充的表单。 forms.py的save方法如下所示:
def save(self, commit=True):
instance = super(LocationForm, self).save(commit=False)
if instance.location_id:
instance.save()
else:
new_location=Location.objects.create(name=self.cleaned_data['name'])
instance.location=new_company
instance.save()
return instance
因此,当我点击更新时,数据会保存在数据库中,但是我收到错误
没有要重定向到错误的网址
观点:
class LandingView(CreateView):
model = Review
form_class = LocationForm
template_name="core/index.html"
models.py - 我创建了一个get_absolute_url函数
from django.core.urlresolvers import reverse
def get_absolute_url(self):
return reverse ('index', args=[str(self.id)])
所以在网址中我尝试了这个
url(r'^$', core.views.LandingView.as_view(success_url="success"), name='index'),
但是,如果我希望将其重定向到原始页面,我该怎么办,比如“回到我来自哪里”?
我试过
url(r'^$', core.views.LandingView.as_view(success_url=""), name='index'),
和
url(r'^$', core.views.LandingView.as_view(success_url=reverse('index')), name='index'),
和
url(r'^$', core.views.LandingView.as_view(success_url=reverse("")), name='index'),
但这些都不起作用!
编辑此网址有效,我不需要def_get_absolute_url
url(r'^$', core.views.LandingView.as_view(success_url="/"), name='index'),
答案 0 :(得分:1)
我确信有一种方法可以像你这样在基于类的视图中重定向,但这是我将如何做到这一点,只需保存表单然后重定向。你的保存方法是否正常工作我喜欢你这样做但我不确定是否编辑你的保存方法是最好的方法,而不是在你的视图中获取实例,以预先填充表格已提交的数据以初始创建形式表示。任何其他问题让我知道。
views.py
from app.forms import LocationForm
def Landing_View(request)
if request.method == 'POST':
form = LocationForm(request.POST)
if form.is_valid():
form.save()
return HttpResponseRedirect('/your_url/')
else:
print form.errors()
else:
form = LocationForm()
return render (request, 'template.html', {'form':form},)
urls.py - Landing_View的网址,然后我在保存时将您重定向回此网址
url(r'^your_url/', app.views.Landing_View, name='your_url'),