私はDjangoで作業する初心者です。簡単な例が必要です。 Django、Ajax、jQueryを使用してページを更新せずにフォーム(投稿)を送信するにはどうすればよいですか?
これは私のフォーム、ビュー、テンプレートです。
views.py
from Django.shortcuts import *
from Django.template import RequestContext
from linki.forms import *
def advert(request):
if request.method == "POST":
form = AdvertForm(request.POST)
if(form.is_valid()):
print(request.POST['title'])
message = request.POST['title']
else:
message = 'something wrong!'
return render_to_response('contact/advert.html',
{'message':message},
context_instance=RequestContext(request))
else:
return render_to_response('contact/advert.html',
{'form':AdvertForm()},
context_instance=RequestContext(request))
forms.py(「ModelForm」を使用したフォーム)
from Django import forms
from Django.forms import ModelForm
from linki.models import Advert
class AdvertForm(ModelForm):
class Meta:
model = Advert
テンプレート(フォームhtmlコード)
<html>
<head>
</head>
<body>
<h1>Leave a Suggestion Here</h1>
{% if message %}
{{ message }}
{% endif %}
<div>
<form action="" method="post">{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Submit Feedback" />
</form>
</div>
</body>
</html>
jqueryでajax送信を使用することを計画している場合は、ビューからhtmlを返さないでください。代わりにこれを行うことをお勧めします。
html:
<html>
<head>
</head>
<body>
<h1>Leave a Suggestion Here</h1>
<div class="message"></div>
<div>
<form action="" method="post">{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Submit Feedback" />
</form>
</div>
</body>
</html>
js
$('#form').submit(function(e){
$.post('/url/', $(this).serialize(), function(data){ ...
$('.message').html(data.message);
// of course you can do something more fancy with your respone
});
e.preventDefault();
});
views.py
import json
from Django.shortcuts import *
from Django.template import RequestContext
from linki.forms import *
def advert(request):
if request.method == "POST":
form = AdvertForm(request.POST)
message = 'something wrong!'
if(form.is_valid()):
print(request.POST['title'])
message = request.POST['title']
return HttpResponse(json.dumps({'message': message}))
return render_to_response('contact/advert.html',
{'form':AdvertForm()}, RequestContext(request))
そのようにして、応答をmessage
divに入れます。プレーンなhtmlを返す代わりに、jsonを返す必要があります。
<script type="text/javascript">
$(document).ready(function() {
$('#form_id').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..
$('#success_div).html(response); // update the DIV
},
error: function(e, x, r) { // on error..
$('#error_div).html(e); // update the DIV
}
});
return false;
});
});
</script>
$('#form-id').submit(function(e){
$.post('your/url', $(this).serialize(), function(e){ ... });
e.preventDefault();
});
ここ はそのための完璧なチュートリアルです。重要な部分を含めます。
最初に このjQueryスクリプト をmain.js
に追加し、それをページにリンクします。
このコードをmain.js
に追加します(ブログコメントを送信するためのバージョンを含めます)
// Submit post on submit
$('#comment-form').on('submit', function(event){
event.preventDefault();
create_post();
});
// AJAX for posting
function create_post() {
$.ajax({
url : "/blogcomment/", // the endpoint
type : "POST", // http method
data : {
blog_id: blog_id,
c_name : $('#comment-name').val(),
c_email: $('#comment-email').val(),
c_text: $('#comment-text').val(),
}, // data sent with the post request
// handle a successful response
success : function(json) {
$('#comment-name').val(''); // remove the value from the input
$('#comment-email').val(''); // remove the value from the input
$('#comment-text').val(''); // remove the value from the input
$('#comment-form').prepend("<div class='alert alert-success'><button type='button' class='close' data-dismiss='alert'>×</button>" + json.result +"</div>");
},
// handle a non-successful response
error : function(xhr,errmsg,err) {
$('#comment-form').prepend("<div class='alert alert-danger'><button type='button' class='close' data-dismiss='alert'>×</button>Oop! Error happend!</div>"); // add the error to the dom
//console.log(xhr.status + ": " + xhr.responseText); // provide a bit more info about the error to the console
}
});
}
コメントを取得するための私のviews.py
は次のようになります:
def get_blog_comment(request):
if request.method == 'POST':
blog_id = request.POST.get('blog_id')
user = request.POST.get('c_name')
email = request.POST.get('c_email')
comment = request.POST.get('c_text')
date = jdatetime.datetime.now().strftime("%Y-%m-%d");
response_data = {}
blogcomment = Comments(blog_id = blog_id, date = date, name = user, email = email, comment_text = comment)
blogcomment.save()
response_data['result'] = 'Success!!.'
return HttpResponse(
json.dumps(response_data),
content_type="application/json"
)
else:
return HttpResponse(
json.dumps({"nothing to see": "this isn't happening"}),
content_type="application/json"
)
そして最後に、元のチュートリアルに含まれていないurls.py
のURL部分:
path('blogcomment/', views.get_blog_comment, name='get_blog_comment'),