django ajax json的實例代碼
更新時間:2018年05月29日 08:43:12 作者:q493383189
今天就為大家分享一篇django ajax json的實例代碼,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
1. views.py
定義views視圖函數(shù),將數(shù)據(jù)存入字典。并用壓縮為json格式,dumps,并return。
import json
def get_comments(request, article_id):
article_obj = models.Article.objects.get(id=article_id)
article_comments = article_obj.comment_set.select_related()
comment_dict = {}
for i in article_comments:
print('comments_id', i.id)
print('article_id', i.article_id)
print('parent_comment_id', i.parent_comment_id)
print('comment_type', i.comment_type)
print('user_id', i.user_id)
print('user_name', i.user.name)
print('comment', i.comment)
print('date', type(i.date))
print('date', time.strftime("%Y-%m-%d %H:%M:%S", i.date.timetuple()))
comment_dict[i.id] = [i.comment_type, i.comment, time.strftime("%Y-%m-%d %H:%M:%S", i.date.timetuple()), i.article_id, i.user_id, i.user.name, i.parent_comment_id]
comment_json = json.dumps(comment_dict)
return HttpResponse(comment_json)
2. article.html中編輯js jquery,接受json數(shù)據(jù),并處理并添加到html中
<script>
function getComments() {
$.get("{% url 'get_comment' one_article.id %}", function(callback){
console.log(callback);
var obj = JSON.parse(callback);
console.log(this.comment_type);
for (var key in obj){
console.log(key);
console.log(obj[key])
}
}
function getCsrf() {
return $("input[name='csrfmiddlewaretoken']").val();
}
$(document).ready(function () {
$(".comment-box button").click(function () {
var comment_text = $('.comment-box textarea').val();
if (comment_text.trim().length < 5){
alert("評論不能少于5個字")
}else {
$.post(
"{% url 'post_comment' %}",
{
'comment_type':1,
article_id: "{{ one_article.id }}",
parent_comment_id:null,
'comment':comment_text.trim(),
'csrfmiddlewaretoken':getCsrf()
},
function (callback) {
console.log(callback);
if (callback == 'post-comment-success'){
alert('post-comment-success');
getComments();
}
}
)
}
})
})
</script>
以上這篇django ajax json的實例代碼就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持腳本之家。
相關(guān)文章
Python編程實戰(zhàn)之Oracle數(shù)據(jù)庫操作示例
這篇文章主要介紹了Python編程實戰(zhàn)之Oracle數(shù)據(jù)庫操作,結(jié)合具體實例形式分析了Python的Oracle數(shù)據(jù)庫模塊cx_Oracle包安裝、Oracle連接及操作技巧,需要的朋友可以參考下2017-06-06
Python Numpy數(shù)組擴展repeat和tile使用實例解析
這篇文章主要介紹了Python Numpy數(shù)組擴展repeat和tile使用實例解析,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下2019-12-12

