html Django模板查询调试

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html Django模板查询调试相关的知识,希望对你有一定的参考价值。

{% if debug %}
<div id="debug">
  <h2>Queries</h2>
  <p>
    {{ sql_queries|length }} Quer{{ sql_queries|pluralize:"y,ies" }}
    {% ifnotequal sql_queries|length 0 %}
    (<span style="cursor: pointer;" onclick="var s=document.getElementById('debugQueryTable').style;s.display=s.display=='none'?'':'none';this.innerHTML=this.innerHTML=='Show'?'Hide':'Show';">Show</span>)
    {% endifnotequal %}
  </p>
  <table id="debugQueryTable" style="display: none;">
    <col width="1"></col>
    <col></col>
    <col width="1"></col>
    <thead>
    <tr>
      <th scope="col">#</th>
      <th scope="col">SQL</th>
      <th scope="col">Time</th>
    </tr>
    </thead>
    <tbody>
    {% for query in sql_queries %}<tr class="{% cycle odd,even %}">
      <td>{{ forloop.counter }}</td>
      <td>{{ query.sql|escape }}</td>
      <td>{{ query.time }}</td>
    </tr>{% endfor %}
    </tbody>
  </table>
</div>
{% endif %}

以上是关于html Django模板查询调试的主要内容,如果未能解决你的问题,请参考以下文章

Django 模板标签调试

使用 django 模板将 json 填充到 html

Django:调试模板标签

Django内置模板标签

调试模式打开时的 Django 和静态文件

Django 模板过滤器查询集