我在/'tuple'对象中有一个AttributeError没有属性'get',下面是Django可能出错的跟踪路径?
AttributeError at /
'tuple' object has no attribute 'get'
Request Method: GET
Request URL: http://www.example.com/
Django Version: 1.10.5
Exception Type: AttributeError
Exception Value:
'tuple' object has no attribute 'get'
Exception Location: /home/admin/env/lib/python3.5/site-packages /django/middleware/clickjacking.py in process_response, line 32
Python可执行文件:/ home / admin / env / bin / python Python版本:3.5.2
答案 0 :(得分:0)
clickjacking中间件正在调用响应的get
方法。因此,您的视图不会返回HttpResponse
实例。
答案 1 :(得分:0)
检查应用程序views.py文件,return语句中的render或HttpResopose函数出了点问题。我遇到了同样的错误,并且在return语句中缺少渲染。
def relative(request):
return render(request, 'basic_app/relative_url_templates.html')