当前位置:   article > 正文

Django传递dataframe对象到前端网页

django

在django前端页面上展示的数据,还是使用django模板自带的语法

方式1 不推荐使用 直接使用 【df.to_html(index=False)】

        使用to_html他会生成一个最基本的表格没有任何的样式,一点都不好看,如果有需要的话可以自行修改表格的样式,但博主觉得这样的方式太麻烦,

        后端

  1. df = pd.DataFrame({'Name': ['John', 'Alice', 'Smith'],
  2. 'Age': [30, 25, 35],
  3. 'City': ['New York', 'London', 'Paris']})
  4. # 将DataFrame转换为HTML字符串
  5. table_html = df.to_html(index=False)
  6. # 将表格数据和其他数据打包成上下文对象
  7. content= {
  8. 'table_html': table_html
  9. }
  10. return render(request, '自己的前端网页', content)

        前端

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. </head>
  5. <body>
  6. <table>
  7. {{ table_html | safe }}
  8. </table>
  9. <!-- 其他页面内容 -->
  10. </body>
  11. </html>

         效果

        

方式2  推荐使用 将df转为字典放到特定的表格下

        这个表格是博主已经写好<table>有一定的样式了,这个方式就是将每一行数据给放到表格里面,相当于只是传递了数值。

        下面的django模板语法能够动态的更新标题行和数据,数据表格有变动不需要修改前端模板

         后端

  1. df = pd.DataFrame({'Name': ['John', 'Alice', 'Smith'],
  2. 'Age': [30, 25, 35],
  3. 'City': ['New York', 'London', 'Paris']})
  4. table_data = df.to_dict('records')
  5. table_headers = df.columns.tolist()
  6. content = {
  7. 'table_headers':table_headers,
  8. 'table_data': table_data
  9. }
  10. return render(request, '自己的前端网页', content)

        前端

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. </head>
  5. <body>
  6. <div class="table-responsive">
  7. <div id="example_wrapper" class="dataTables_wrapper">
  8. <table id="example" class="display table dataTable" role="grid"
  9. aria-describedby="example_info">
  10. <thead>
  11. <tr>
  12. {% for header in table_headers %}
  13. <th>{{ header }}</th>
  14. {% endfor %}
  15. </tr>
  16. </thead>
  17. <tbody>
  18. {% for row in table_data %}
  19. <tr>
  20. {% for value in row.values %}
  21. <td>{{ value }}</td>
  22. {% endfor %}
  23. </tr>
  24. {% endfor %}
  25. </tbody>
  26. </table>
  27. </div>
  28. </div>
  29. <!-- 其他页面内容 -->
  30. </body>
  31. </html>

         效果

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/897276
推荐阅读
相关标签
  

闽ICP备14008679号