码迷,mamicode.com
首页 > Web开发 > 详细

django接受json数据到html

时间:2018-05-21 14:38:44      阅读:535      评论:0      收藏:0      [点我收藏+]

标签:django

views

    cursor = connection.cursor()
    cursor.execute("select staff_name  from  alarm_platform.TBL_STAFF where staff_number=(select duty_staff_number1   from alarm_platform.TBL_DUTY a  where duty_staff_time_start  >  DATE_SUB(CURDATE(), INTERVAL 0 DAY));")
    alert_today = cursor.fetchone()
    context_bak = {'msg': alert_list}
    print(context_bak)
    return  render(request,"mysql_insert.html", {'msg_1': json.dumps(context_bak)})

html接受数据

{{ msg_1 }}

django接受json数据到html

标签:django

原文地址:http://blog.51cto.com/13675040/2118641

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!