Python语言技术文档

微信小程序技术文档

php语言技术文档

jsp语言技术文档

asp语言技术文档

C#/.NET语言技术文档

html5/css技术文档

javascript

点击排行

您现在的位置:首页 > 技术文档 > Python网站web

django ajax json的实例代码

来源:中文源码网    浏览:127 次    日期:2024-05-07 10:26:39
【下载文档:  django ajax json的实例代码.txt 】


django ajax json的实例代码
1. views.py
定义views视图函数,将数据存入字典。并用压缩为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数据,并处理并添加到html中

以上这篇django ajax json的实例代码就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持中文源码网。

相关内容