獲取列表值鑑於:在Django模板
return render_to_response('template.html',
{'headers': list(sort_headers.headers()) },
context_instance=RequestContext(request))
模板:
{{ headers }}
<br />
{{ headers|slice:"1" }}
在瀏覽器:
[{'url': '?ot=desc&o=0', 'text': 'Nombre', 'class_attr': ' class="sorted ascending"', 'sortable': True}, {'url': '?ot=asc&o=1', 'text': 'Valor', 'class_attr': '', 'sortable': True}, {'url': '?ot=asc&o=2', 'text': 'Inventario', 'class_attr': '', 'sortable': False}, {'url': '?ot=asc&o=3', 'text': 'Fecha Creacion', 'class_attr': '', 'sortable': True}]
[{'url': '?ot=desc&o=0', 'text': 'Nombre', 'class_attr': ' class="sorted ascending"', 'sortable': True}]
我得到{{ headers|slice:"1" }}
列表節點,但現在,如何獲得字典值?例如'url'返回'?ot=desc&o=0'
。
注意:不能使用{% for %}
。
是的,是的。謝謝。 – panchicore 2009-09-30 14:49:48