首页 > 数据库技术 > 详细

django自定义sql返回元组的处理

时间:2018-06-13 23:24:04      阅读:300      评论:0      收藏:0      [点我收藏+]
1.views.py

def scheduling(request):
    cursor = connection.cursor()
    cursor.execute("select staff_name from alarm_platform.TBL_STAFF where staff_number=any(select duty_staff_number1 from alarm_platform.TBL_DUTY);",None)
    people_list = cursor.fetchall()
    print(people_list)
    return render(request, "people_list.html", {"people_list": people_list})  # 返回界面
  1. 模板文件

    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <title>Store</title>
    </head>
    <body>
    <table border="1">
    <thead>
    <tr>
        <th>第一</th>
    </tr>
    </thead>
    <tbody>
    {% for people_list in people_list %}
        <tr>
    
            <td>{{ people_list.0 }}</td>
        </tr>
    {% endfor %}
    </tbody>
    </table>

    你可以在模板把 {{ chika }} 打印出来:

    ((‘wangxa‘,), (‘wangcha‘,), (‘liuli‘,), (‘wangkke‘,))
  {% for people_list in people_list %}
     {{ people_list.0 }} {{ people_list.1}} {{ people_list.2 }}   
{% endfor %}

django自定义sql返回元组的处理

原文:http://blog.51cto.com/13675040/2129099

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!