我的 django 项目中有以下代码。
ctxt = RequestContext(request, {
'power': power,
'attack': attack,
'defense': defense,
})
现在我想通过如下方式获得这本字典ctxt
{
'power': power,
'attack': attack,
'defense': defense,
}
我试过ctxt.dicts
了,但这包含太多项目。所以我查看了源代码,并在class RequestContext(Context):
for processor in get_standard_processors() + processors:
self.update(processor(request))
我认为带入其他项目。
那我怎么能得到呢?
顺便说一句,如果你想知道我为什么要这样做,你可以看看我之前问过的这个问题。