我的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))
我认为带来其他项目。
那我该怎么办呢?
不过,如果你想知道我为什么要这样做,你可以看到我之前问的这个问题。答案 0 :(得分:11)
答案 1 :(得分:2)
ctxt.dict是一系列词典,所以你只需要:
ctxt.dict[0]