gpt4 book ai didi

Django:如何在ajax中返回模型表单集并在模板中使用

转载 作者:可可西里 更新时间:2023-11-01 16:30:54 25 4
gpt4 key购买 nike

我需要在运行时使用 ajax 将表单动态添加到我的表单集中,对此我指的是 Dynamically adding a form to a Django formset with Ajax

我在同一页面上有多个具有不同前缀的表单集。

我的模型是这样设计的:一个用户可以拥有多部电话。一部电话可以有多条线路(如果需要详细信息) Accessing Many to Many "through" relation fields in Formsets

用户添加新手机后,我会使用 ajax 保存手机。 View 如下

def addUserPhone(request, customer_id, location_id, user_id, **kwargs):
error_msg = u"No POST data sent."
context = {}
if request.is_ajax():
if request.method == "POST":
user = End_User.objects.get(id=user_id)
phone_client = PartialPhone_ClientForm(request.POST, prefix='new_client')
instance = phone_client.save()
#associate user to a phone
instance.end_user.add(user)

#Creating an empty lineFormset for a phone
LineFormSet = modelformset_factory(Line, form=Line_Form, can_delete=True)
client_lines = LineFormSet(queryset=Line.objects.none(), prefix='phone_client_'+str(instance.id))

# how to return the two objects instance and client_lines back to the template??
#format = 'json'
#mimetype = 'application/javascript'
#data = serializers.serialize(format, [instance])
#return HttpResponse(data)

#can we return as a context?? this gives me only a string "phoneline_set" in the template
context['phone'] = instance
context['line_set'] = client_lines
return HttpResponse(context)
else:
error_msg = u"Insufficient POST data (need 'Name ' and 'Telephone Number'!)"

else:
error_msg = "Non Ajax"
return HttpResponseServerError(error_msg)

现在将电话实例和 LineFormSet 返回到 View 以在模板中呈现的最佳方法是什么?

如果我只返回一个上下文,我的 View 只会得到字符串“phoneline_set”。但我想做类似的事情

  $.post("addUserPhone/",phoneData,function(data){
$('.scroll').append("<h2> {{ line_set }} </h2>")

});

如果我使用 Json 序列化并传递我如何传递 LineFormSet 并在模板中使用它?目前,如果我尝试序列化我的 client_lines 表单集,我会收到错误消息AttributeError: 'LineFormFormSet' 对象没有属性 '_meta'

感谢任何帮助,谢谢!!

最佳答案

只是按照评论中的要求详细说明 Daniel 的回答。

Django 是一个 MVC 风格的框架。模型用于存储和访问数据。在 Django Controller 中称为 View ,它的工作是从具有特定 URL 的用户那里获取请求,获取一些可能与 url 相关联的数据,然后将该数据推送到一些将使用数据 View 给它的模板以便填充模板内的占位符。

这是一个解释所有方面的简单示例。想象一下,有一个网站有一个图书数据库。因此,您的模型将存储与每本书相关的信息 - 标题、作者、ISBN 号等。

# models.py
class Book(models.Model):
title = models.CharField(max_length=64)
author = models.CharField(max_length=64)
isbn = models.CharField(max_length=64)

现在你想添加一个 URL example.com/book/<id>/这将显示有关具有指定 id 的书的所有信息。为此,需要做几件事。首先 Django Controller 必须使用此模式捕获 url。您在 urls.py 文件中指定 url 模式。

# urls.py
urlpattern('',
url(r'^book/(?P<id>\d+)/$', views.book),
)

urls.py指定 url 模式和 View 之间的映射,告诉 Django 每当用户访问具有指定模式的 URL 时,Django 必须将请求提供给 View book这将知道该怎么做。此外,Django 会将图书 ID 传递给 View 。

# views.py
def book(request, id):
# get the book
book = get_object_or_404(Book, pk=id)
context = {
'book': book
}
return render_to_response('book_template.html', context)

所以在 View 内部,给定书的 ID,它使用模型从数据库中查找书,如果找不到,它会向用户返回 404 错误。然后它填充一个我称之为 context 的字典。带有一些值,它将传递给模板。模板的工作就是把这个 context字典并使用其中的值来填充模板中的一些占位符。

# book_template.html
<html>
<head>...</head>
<body>
<h1>{{ book.title }}</h1>
<p>Author: {{ book.author }}</p>
<p>ISBN: {{ book.isbn }}</p>
</body>
</html>

因此模板将从 View 中获取上下文,然后使用 book在上下文中以填充 {{ }} 中的值.

在您的情况下,您正试图向用户返回一个没有多大意义的上下文。您需要做的是创建一个模板,该模板将采用该上下文 { 'phone': instance, 'line_set': client_lines }并根据它,将呈现一些 HTML,这些 HTML 将返回给用户。您可以使用 AJAX 提取 HTML,然后根据需要使用它。

希望这能为您澄清一些概念。

Django 文档非常棒,因此我建议您也阅读介绍。它将解释我在这个答案中使用的所有语法和一些快捷方式( render_to_response 等)。

关于Django:如何在ajax中返回模型表单集并在模板中使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11104690/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com