错误:' Err_too_many_Redirects'此网页有一个重定向循环

时间:2015-07-03 14:26:53

标签: django django-templates

模板:

<html>
<head><title>Attendance Admin Page</title></head>
<body>
    <center>
    <h1> List of Subfields <h1>
<table>
    <tr>
        <td><a href="{% url 'student:list' %}">Classes</a></td>
        <td><a href="{% url 'student:listsec' %}">Sections</a></td>
        <td><a href="{% url 'student:listteach' %}">Teachers</a></td>
        <td><a href="{% url 'student:listatten' %}">Attendance</a></td>
   </tr>
</table>
</center>

为了方便起见,我想在一个地方提供我所选择的所有网页的链接,但不幸的是,当我尝试它时会抛出错误。

有什么方法可以让它成为可能吗?请提供修复。

谢谢!提前......

1 个答案:

答案 0 :(得分:0)

明显:你的应用程序陷入了重定向循环。 尝试打开像Fiddler这样的网络监视器,或Chrome开发者工具中的“网络”标签,查看响应标题,看看它试图将你重定向到哪里......这可能有助于揭示这里出了什么问题。