全部博文(2065)
分类: Python/Ruby
2010-03-15 11:07:59
解决Django渲染元组序列
[整理时间:
一般渲染模板的方法是渲染一个数据集。现在需要渲染出来一个字段通过分割之后输出的内容。
视图层代码:
room = Agente.objects.get(id = t_id)
all_agent = room.package_dbname
output = all_agent.split(";") #编号组成为 agent编号_真名.py
return render_to_response('moni/tagent.html',{'s_h':room,'output':output})
模板层代码:
{% for type in output %}
<tr bgcolor="#EBF
<td align="center">
<label>{{type}}label>
td>
遍历方法其实是与在PY里面写的方法是一样的处理哦!
现在有一个问题就是在split的时候会有最后一列为空值。需要过滤处理
解决方法:
result
= output[0:len(output)-1]
这样就可以分割得到想要的遍历的数据集出来!