Django - 从模板内部调用带有表单的视图
Posted
技术标签:
【中文标题】Django - 从模板内部调用带有表单的视图【英文标题】:Django - Call a view with forms from inside a template 【发布时间】:2015-11-24 05:57:12 【问题描述】:我想将几个帐户管理页面放在一个页面上。单击左侧的链接将通过 ajax 将相应的视图(运输/帐户信息、购物车等)加载到右侧的 div 中。例如:单击“查看购物车”将调用 render_cart 视图并将生成的模板插入到同一页面上的另一个 div 中。
在我开始介绍表单之前,这一切正常。正确填写表格后,它似乎可以正常工作。不完整的表单将仅返回内部模板(render_cart,但不返回包含帐户管理模板)。我可以更改它以呈现外部视图,但随后我会丢失表单错误和成功消息。
代码如下。
function render_account_info()
var account_info = $.get(% url 'account-info' %, function(response)
$('#account-edit').html(response);
);
HTML:
<!-- account.html - this is the main account management template -->
% block content %
<div style="float: left;">
Account Info<br />
Shipping Info</br />
Cart<br />
</div>
<div style="float: right; width: 50%;" id="account-edit">
</div>
% endblock %
<!-- account_info.html - this is the account info template (change email and password) -->
Hello, request.user !<br />
<form action="% url 'account-info' %" method='POST'>
% csrf_token %
passwordForm.as_p
<input type="submit" value="Submit">
</form>
Django 视图:
#this loads the main account management page
@login_required(login_url = reverse_lazy('login'))
def account(request):
return render(request, 'website/account.html')
#this view is meant to change passwords and email addresses
#the commented out lines below are examples of what I have tried to get forms working right
@login_required(login_url = reverse_lazy('login'))
def render_account(request):
c =
c.update(csrf(request))
passwordForm = PasswordChangeForm(user = request.user)
if (request.method == 'POST'):
passwordForm = PasswordChangeForm(user = request.user, data = request.POST)
if (passwordForm.is_valid()):
passwordForm.save()
update_session_auth_hash(request, passwordForm.user)
#return render(request, 'website/account_info.html', 'passwordForm': passwordForm)
return render(request, 'website/account.html')
#else:
#return render(request, 'website/account.html')
return render(request, 'website/account_info.html', 'passwordForm': passwordForm)
【问题讨论】:
【参考方案1】:我建议您使用 Ajax 调用发送表单并将响应 html 动态插入到主 div 中。
$('form').submit(function(e)
e.preventDefault();
var data = $('form').serialize();
$.post('% url 'account-info' %', data).success(function(data)
$('#account-edit').html(data)
);
);
响应将包含带有错误消息或成功消息的更新表单。
一般来说,我建议您为每个不同的操作使用单独的视图。
【讨论】:
以上是关于Django - 从模板内部调用带有表单的视图的主要内容,如果未能解决你的问题,请参考以下文章