(Visual Studio)在本地主机上运行时出现Django错误..使用模板?

时间:2014-09-06 04:07:08

标签: python django

我只是使用Python Tools" Django Web Project"模板,每次我尝试在本地主机上运行该站点时,都会收到此错误。

ValueError at /

dictionary update sequence element #0 has length 11; 2 is required

Request Method:     GET
Request URL:    http://localhost:54034/
Django Version:     1.7
Exception Type:     ValueError
Exception Value:    


Server time:    Sat, 6 Sep 2014 00:04:46 -0400

1 个答案:

答案 0 :(得分:1)

在您的视图中尝试删除RequestContext

return render(request, 'app/index.html',

    {
        'title':'Home Page',
        'year':datetime.now().year,
    }
)

而不是

return render(
    request,
    'app/index.html',

    RequestContext(request,
    {
        'title':'Home Page',
        'year':datetime.now().year,
    })
)

看起来像是一个PTVS错误 参考 http://pytools.codeplex.com/workitem/2653