trimpath模板怎么遍历map集合

DY1201 2015-07-14 12:35:08
trimpath模板怎么遍历map集合,求大神指教。。。。。。。。。。
...全文
252 2 打赏 收藏 转发到动态 举报
写回复
用AI写文章
2 条回复
切换为时间正序
请发表友善的回复…
发表回复
baidu_33395439 2015-12-16
  • 打赏
  • 举报
回复
A varName is any valid JavaScript variable name. A listExpr is a JavaScript expression which should evaluate to an Array, an Object, or to null. The listExpr is evaluated only once. Two variables are bound in the main body of the loop: __LIST__varName - holds the result of evaluating listExpr. varName_index - this is the key or counter used during iteration. Examples: {for x in customer.getRecentOrders()} ${x_index} : ${x.orderNumber} <br/> {forelse} You have no recent orders. {/for} Converted pseudo-code for the above... var __LIST__x = customer.getRecentOrders(); if (__LIST__x != null && __LIST__x.length > 0) { for (var x_index in __LIST__x) { var x = __LIST__x[x_index]; ${x_index} : {$x.orderNumber} <br/> } } else { You have no recent orders. }
DY1201 2015-07-14
  • 打赏
  • 举报
回复
{for pm in product.priceMap } {for pp in pm} {if pp_index == -1} <li>≧ @{pp } @{product.unit }:<strong data-value="@{pp }" >@{pm_index }</strong></li> {else} <li>@{pp_index }-@{pp }@{product.unit }:<strong data-value="@{pp_index }">@{pm_index }</strong></li> {/if} {/for}

87,964

社区成员

发帖
与我相关
我的任务
社区描述
Web 开发 JavaScript
社区管理员
  • JavaScript
  • 无·法
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧