我试图通过Ajax调用从django模板调用我的视图。
我想从视图中响应表单对象,以便我可以通过div元素中的jquery渲染此表单。
有可能吗?怎么样?
这是我试过的:
home.html的
function get_edit_form(button, id)
{
$.ajax({
url: "/manage/licenses/{{mls_signup_code}}/{{agent_id}}/" + id + "/",
type: "get",
data: {id: id},
success: function(response) {
console.log(response);
$("#formdiv").html({{ response.as_p }});
}
})
}
Views.py
elif request.method == "GET":
owned_license_id = request.GET.get('id', '')
form = OwnedLicenseForm(owned_license_id)
return form
答案 0 :(得分:2)
我看到你要做的是什么,但是你不能用这种方式渲染html表单:
$("#formdiv").html({{ response.as_p }});
我认为您将服务器端渲染(Django模板)与客户端渲染混淆。当服务器处理请求时,服务器端呈现会发生,它无法呈现浏览器中运行的javascript生成的对象。
因为response
是一个javascript对象,是通过jquery向您的url发送Ajax请求获得的。此时,页面已经由Django的模板引擎呈现,并发送到浏览器。 Django模板无法识别这个response
。
我知道你想使用as_p()方法来渲染表单,你可以这样做:
function get_edit_form(button, id)
{
$.ajax({
url: "/manage/licenses/{{mls_signup_code}}/{{agent_id}}/" + id + "/",
type: "get",
data: {id: id},
success: function(response) {
console.log(response);
// response is form in html format
$("#formdiv").html(response);
}
})
}
# Views.py
elif request.method == "GET":
owned_license_id = request.GET.get('id', '')
form = OwnedLicenseForm(owned_license_id)
return HttpResponse(form.as_p()) # return a html str
答案 1 :(得分:2)
您可以结合使用Django和JQuery来完成此操作。
步骤1:创建一个非常简单的 form_from_ajax.html 模板
模板可以像{{form.as_p}}
一样简单。重点是不继承您的基本模板。您只是使用此 form_from_ajax.html 模板呈现表单的HTML。
第2步:创建一个带有条形参数的视图,以帮助您获取正确的表单
def payment_method_ajax(request, method): # method is your slug
"""Load a dynamic form based on the desired payment method"""
options = {
'ach': ECheckForm(), # Dynamic form #1
'credit-card': CreditCardForm(), # Dynamic form #2
}
if method in options.keys():
context = {'form': options[method]}
else:
context = None
template = 'your_app_name/form_from_ajax.html'
return render(request, template, context)
第3步:在urls.py中定义AJAX URL
[...
path(
'payment-method-ajax/<slug:method>/', # notice the slug in the URL
views.payment_method_ajax,
name='payment-method-ajax'),
...]
第4步:更新您想要显示AJAX加载表单的模板
使用一些按钮让用户选择适当的表单选项
<button id="btn_ach" onclick="load_payment_form(this)">ACH</button>
<button id="btn_credit_card" onclick="load_payment_form(this)">Credit Card</button>
表单域是动态表单的加载位置
<form id="id-form" style="display: none;">
{% csrf_token %}
<div id="form-fields"></div>
<input type="submit" value="Save Payment Details"/>
</form>
确保将子弹添加到主视图的上下文中
context = {
'target': 'Add a New Payment Method',
'h1': 'Add a New Payment Method',
'ach': 'Save an ACH Profile',
'credit_card': 'Save a Credit Card Profile',
'slugs': ['ach', 'credit-card'], # Here are the slugs ****
}
第5步:使用JQuery和按钮的onclick加载表单
<script>
var ach = 'ACH';
var creditCard = 'Credit Card';
var form_urls ={
ach : '{% url "payment-method-ajax" slugs.0 %}',
creditCard : '{% url "payment-method-ajax" slugs.1 %}',
}
function load_payment_form(btn) {
if(btn.innerText==ach) {
get_url = form_urls['ach'];
type = ach;
}
else if(btn.innerText==creditCard) {
console.log('Load credit card form');
get_url = form_urls['creditCard'];
type = creditCard;
}
$.get({'url': get_url}).done(
function(data) {
document.getElementById('form-fields').innerHTML = data;})
document.getElementById("id-form").style.display = "block";
}
</script>