关于Django_context问题--context must be a dict rather than RequestContext

最开始编写的views.py

from django.template import Context, Template

def contact(request):
    form=forms.ContactForm()
    template=get_template('contact.html')
    request_context=RequestContext(request)
    request_context.push(locals())

    html=template.render(request_context)
    return HttpResponse(html)

 

出现报错:

TypeError at /post/
context must be a dict rather than RequestContext.
Request Method:    GET
Request URL:    http://localhost:8000/post/
Django Version:    1.11.17
Exception Type:    TypeError
Exception Value:    
context must be a dict rather than RequestContext.
Exception Location:    /home/croline/VENV/local/lib/python2.7/site-packages/django/template/context.py in make_context, line 287
Python Executable:    /home/croline/VENV/bin/python
Python Version:    2.7.12
Python Path:    
['/home/croline/mydjango/mood',
 '/home/croline/VENV/lib/python2.7',
 '/home/croline/VENV/lib/python2.7/plat-x86_64-linux-gnu',
 '/home/croline/VENV/lib/python2.7/lib-tk',
 '/home/croline/VENV/lib/python2.7/lib-old',
 '/home/croline/VENV/lib/python2.7/lib-dynload',
 '/usr/lib/python2.7',
 '/usr/lib/python2.7/plat-x86_64-linux-gnu',
 '/usr/lib/python2.7/lib-tk',
 '/home/croline/VENV/local/lib/python2.7/site-packages',
 '/home/croline/VENV/lib/python2.7/site-packages']
Server time:    星期一, 25 二月 2019 20:18:38 +0800

 

解决方法:
    将这三句删除
    request_context=RequestContext(request)
    request_context.push(locals())
    html=template.render(request_context)
    改为:
    html = template.render(context=locals(), request=request)

完美解决!

 

 

 

 

 

 

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值