nokey属性(输出没有名称的数组)---精通android、IOS App应用服务程序开发

发布时间:2015-12-11 09:38:15 

输出没有名称的数组

闭合的json格式内容 
不需要

初始化Bag中的记录 
同上一博(也可见下边完整代码相关部分)

输出Bag中的所有记录,不输出数组名称

<for bags=item end="@{item:getLength}">     <item list="@{item:getSuffix}" end="@{item:getLength}" nokey>     <!-- list属性参数表示输出为数组列表格式,end属性参数表示数组结束的位置(跟for的end值相等), nokey属性参数表示不输出数组名称-->         <name>@{item:name}</name>         <price value>@{item:price}</price><!-- value属性参数表示输出不带引号的值 -->         <unit>@{item:unit}</unit>     </item> </for>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

nokey属性参数表示不输出数组名称

结果

[{"name":"土豆","price":1.24,"unit":"KG"},{"name":"T恤","price":68,"unit":"件"},{"name":"可乐","price":2.20,"unit":"瓶"},{"name":"书","price":51.24,"unit":"本"}]
  • 1

完整代码

<chtml> <!-- 数据准备部分,您可以从数据库中查询 --> <bag id=item suffix=0>     <we name=name>土豆</we>     <we name=price>1.24</we>     <we name=unit>KG</we> </bag> <bag id=item suffix=1>     <we name=name>T恤</we>     <we name=price>68</we>     <we name=unit></we> </bag> <bag id=item suffix=2>     <we name=name>可乐</we>     <we name=price>2.20</we>     <we name=unit></we> </bag> <bag id=item suffix=3>     <we name=name></we>     &

相关文章

2015-12-08 10:58:20

输出Bag中的一条记录--精通android、IOS App应用服务程序开发

闭合的json格式内容{ item : { chtml ...

更多
2015-12-09 10:22:08

输出Bag中的所有记录为一个json数组---精通android、IOS App应用服务程序开发

书写闭合的json格式内容{ item : { chtml ...

更多
2015-12-13 11:30:53

输出Bag中的所有记录为一个只有值的json数组---精通android、IOS App应用服务程序开发

闭合的json格式内容 不需要初始化Bag中的记录 同上一博(也可见下边 ...

更多
2015-12-15 11:36:25

输出无名称的空值数组---精通android、IOS App应用服务程序开发

直接输出[]1例子文件_samples/app/array_null.j ...

更多