如何使用 AJAX 和 jQuery 发布 django 表单

IT技术 javascript jquery ajax django django-templates
2021-02-24 22:36:54

我已经查看了大量有关 django AJAX 表单的教程,但每一个都告诉您一种方法,它们都不简单,而且我有点困惑,因为我从未使用过 AJAX。

我有一个名为“note”的模型,它的模型形式,在模板中我需要每次 note 元素发送 stop() 信号(来自 jQuery Sortables)django 更新对象。

我目前的代码:

视图.py

def save_note(request, space_name):

    """
    Saves the note content and position within the table.
    """
    place = get_object_or_404(Space, url=space_name)
    note_form = NoteForm(request.POST or None)

    if request.method == "POST" and request.is_ajax:
        msg = "The operation has been received correctly."          
        print request.POST

    else:
        msg = "GET petitions are not allowed for this view."

    return HttpResponse(msg)

JavaScript:

function saveNote(noteObj) {
    /*
        saveNote(noteObj) - Saves the notes making an AJAX call to django. This
        function is meant to be used with a Sortable 'stop' event.
        Arguments: noteObj, note object.
    */
    var noteID = noteObj.attr('id');

    $.post("../save_note/", {
        noteid: noteID,
        phase: "Example phase",
        parent: $('#' + noteID).parent('td').attr('id'),
        title: $('#' + noteID + ' textarea').val(),
        message: "Blablbla",
    });
}

当前代码从模板中获取数据并将其打印在终端中。我不知道如何操作这些数据。我见过一些人通过 jqueryforms 管理数据以将数据发送到 django。

如何访问 AJAX 发送的数据并更新便笺对象?

6个回答

既然您使用的是 jQuery,为什么不使用以下内容:

<script language="JavaScript">
    $(document).ready(function() {
        $('#YOUR_FORM').submit(function() { // catch the form's submit event
            $.ajax({ // create an AJAX call...
                data: $(this).serialize(), // get the form data
                type: $(this).attr('method'), // GET or POST
                url: $(this).attr('action'), // the file to call
                success: function(response) { // on success..
                    $('#DIV_CONTAINING_FORM').html(response); // update the DIV 
                }
            });
            return false;
        });
    });
</script>

编辑

正如评论中指出的那样,有时上述方法是行不通的。因此,请尝试以下操作:

<script type="text/javascript">
    var frm = $('#FORM-ID');
    frm.submit(function () {
        $.ajax({
            type: frm.attr('method'),
            url: frm.attr('action'),
            data: frm.serialize(),
            success: function (data) {
                $("#SOME-DIV").html(data);
            },
            error: function(data) {
                $("#MESSAGE-DIV").html("Something went wrong!");
            }
        });
        return false;
    });
</script>
谢谢,我可能会使用这个解决方案。其他的也可以,但我认为这会更干净(不使用 jQuery 表单插件)
2021-04-29 22:36:54
$(this).serialize() 无法捕捉submit输入。例如,如果我们在一个表单中有两个提交按钮!你能告诉我怎么处理吗?
2021-04-30 22:36:54
@Sevenearths,在使用ajax post的方法中保存表单数据时,我应该使用返回渲染还是HttpResponse,需要澄清
2021-04-30 22:36:54
首先在您views.py使用的顶部from django.utils import simplejson然后做类似的事情returnedJSON['message_type'] = 'success' <newline> returnedJSON['message'] = 'The something saved successfully' <newline> return HttpResponse(simplejson.dumps(returnedJSON), mimetype="application/json")这样的事情应该工作
2021-05-10 22:36:54
如果我不想 frm.serialize 怎么办?我想获得每个领域的个人 frm.values 吗?
2021-05-12 22:36:54

您可以使用变量的名称访问 POST 请求中的数据,在您的情况下:

request.POST["noteid"]
request.POST["phase"]
request.POST["parent"]
... etc

request.POST 对象是不可变的。您应该将该值分配给一个变量,然后对其进行操作。

我建议您使用这个 JQuery 插件,这样您就可以编写普通的 HTML 表单,然后将它们“升级”到 AJAX。在你的代码中到处都有 $.post 有点乏味。

此外,使用 Firebug(用于 Firefox)上的网络视图或 Google Chrome 的开发人员工具,以便您可以查看 AJAX 调用发送的内容。

对于那些将来来这里寻求答案的人,直接从 POST 对象访问数据的公平警告。确保在验证后使用cleaned_data属性2.2 docs访问数据不确定 Django 的 op 版本,但它似乎与 1.4.6 或更高版本一致。
2021-04-24 22:36:54

需要注意的是将表单作为 html 剪切到模态时返回。

视图.py

@require_http_methods(["POST"])
def login(request):
form = BasicLogInForm(request.POST)
    if form.is_valid():
        print "ITS VALID GO SOMEWHERE"
        pass

    return render(request, 'assess-beta/login-beta.html', {'loginform':form})

返回截取的 html 的简单视图

表单 html 截取

<form class="login-form" action="/login_ajx" method="Post"> 
  <div class="modal-header">
    <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
    <h4 class="modal-title" id="header">Authenticate</h4>
  </div>
  <div class="modal-body">
        {%if form.non_field_errors %}<div class="alert alert-danger">{{ form.non_field_errors }}</div>{%endif%}
        <div class="fieldWrapper form-group  has-feedback">
            <label class="control-label" for="id_email">Email</label>
            <input class="form-control" id="{{ form.email.id_for_label }}" type="text" name="{{ form.email.html_name }}" value="{%if form.email.value %}{{ form.email.value }}{%endif%}">
            {%if form.email.errors %}<div class="alert alert-danger">{{ form.email.errors }}</div>{%endif%}
        </div>
        <div class="fieldWrapper form-group  has-feedback">
            <label class="control-label" for="id_password">Password</label>
            <input class="form-control" id="{{ form.password.id_for_label }}" type="password" name="{{ form.password.html_name}}" value="{%if form.password.value %}{{ form.password.value }}{%endif%}">
            {%if form.password.errors %}<div class="alert alert-danger">{{ form.password.errors }}</div>{%endif%}
        </div>
  </div>
  <div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
<input type="submit" value="Sign in" class="btn btn-primary pull-right"/>
</div>
</form>

包含模态的页面

<div class="modal fade" id="LoginModal" tabindex="-1" role="dialog">{% include "assess-beta/login-beta.html" %}</div>

使用 include 标签加载页面加载时的截图,以便在您打开模态时可用。

Modal.js

$(document).on('submit', '.login-form', function(){
$.ajax({ 
    type: $(this).attr('method'), 
    url: this.action, 
    data: $(this).serialize(),
    context: this,
    success: function(data, status) {
        $('#LoginModal').html(data);
    }
    });
    return false;
});

在这种情况下使用 .on() 像 .live() 一样工作,键将提交事件绑定到文档而不是按钮。

您的解决方案为我工作,我需要改变的唯一的事情就是data: {}data: $(this).serialize()
2021-04-15 22:36:54

由于其他答案确实有效,我更喜欢使用jQuery Form Plugin它完全支持您想要的以及更多。post 视图在 Django 部分照常处理,只返回被替换的 HTML。

在服务器端,您的 django 代码可以像处理其他表单提交一样处理 AJAX 帖子。例如,

视图.py

def save_note(request, space_name):

    """
    Saves the note content and position within the table.
    """
    place = get_object_or_404(Space, url=space_name)
    note_form = NoteForm(request.POST or None)

    if request.method == "POST" and request.is_ajax():        
        print request.POST
        if note_form.is_valid():
            note_form.save()
            msg="AJAX submission saved"
        else:
            msg="AJAX post invalid"
    else:
        msg = "GET petitions are not allowed for this view."

    return HttpResponse(msg)

我假设您的 NoteForm 是一个 ModelForm —— 它应该是 —— 所以它有一个 save 方法。请注意,除了添加save()命令之外,我将您更改request.is_ajaxrequest.is_ajax(),这就是您想要的(如果您使用request.is_ajax您的代码,将只检查请求是否有一个名为 的方法is_ajax,显然它确实如此)。