我已经查看了大量有关 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 发送的数据并更新便笺对象?