先来看看csrf_token做了什么事
django.template.defaulttags.csrf_token
#1 http://imgur.com/zF9wpKH
django.template.defaulttags.CsrfTokenNode.render
#2 http://imgur.com/wFTXzR1
注意这边的context.get('csrf_token')
也就是说context里面要有'csrf_token'
csrf_token template tag才会有东西
那context里面的csrf_token从何而来?
如果你有稍微看过settings.py的话
应该会在TEMPLATES里面发现context_processors
这些context processor会自动加东西在context
所以csrf_token应该也是利用context processor加进去的
然后你认真翻了一下source code发现
在django.template.context_processors有个csrf
#3 http://imgur.com/o64Vp1n
这边他确实产生了csrf_token
但是settings.py里面却没有这个context processor
于是你更认真翻source code
发现django.template.context定义了
_builtin_context_processors = ('django.template.context_processors.csrf',)
#4 http://imgur.com/lQhUVv3
而这个东西被用在django.template.engine.Engine.template_context_processors
#5 http://imgur.com/LbcOIq1
到这边我们了解csrf context processor是自动加进去的
而上面这些和你的问题有什么关系?
※ 引述《left (881 forever)》之铭言:
: template = get_template('posting.html')
django.template.loader.get_template
#6 http://imgur.com/mixZLEu
他会return django.template.backends.django.DjangoTemplates.get_template()
也就是django.template.backends.django.Template
#7 http://imgur.com/KOFVrUx
这边跳了几步 不过不影响
: request_context = RequestContext(request)
: request_context.push(locals())
: html = template.render(request_context)
这边call上图的Template.render
然后是django.template.context.make_context
#8 http://imgur.com/jql8ohU
注意传进去的参数 request=None
使得回传的是django.template.context.Context
而不是RequestContext
差别在于#7执行到self.template.render(context)
跳到django.template.base.Template.render
#9 http://imgur.com/tqg1vbf
context.bind_template(self)
比较一下Context和RequestContext的bind_template
Context:
#10 http://imgur.com/M8T1kn4
RequestContext:
#11 http://imgur.com/KysHULW
有没有看到一个熟悉的东西 template.engine.template_context_processors
刚才我们知道这里面有csrf context processor
所以当传入django.template.base.Template.render的context是Context的时候
就不会有csrf_token
: return HttpResponse(html)
: 也就是改成
: return render(request, ‘posting.html’,locals())
那我们来看这边做了什么
django.shortcuts.render
call django.template.loader.render_to_string
#12 http://imgur.com/rgUnbMu
django.template.loader.get_template
拿到django.template.backends.django.Template
和上面一样
但这边有把request传给render
造成make_context有拿到request所以回传RequestContext
剩下的上面都讲过了
: 结果错误讯息就不见了
: 我想要问各位大大,书上的写法有错吗?
: 如果有,要怎么用RequestContext以及template.render()改到对?
: 如果没有,我是死在哪边? xd