免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3064 | 回复: 5
打印 上一主题 下一主题

关于HTML::Template中嵌套LOOP的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-08-27 15:00 |只看该作者 |倒序浏览
最近在使用HTML::Template模块,觉得挺好用的,但是遇到了一个问题。
在嵌套的循环中,
for{
   for{
         @loop1;
   }
   @loop2;
}
在接下来向模板传值的时候遇到问题了。
我写做    $template->param( LOOP_ONE => [\@loop1,  LOOP_TWO => \@loop2]);
可是一直会报错,不知道哪位高手能赐教一下,谢谢

论坛徽章:
3
戌狗
日期:2014-09-10 17:07:162015年辞旧岁徽章
日期:2015-03-03 16:54:15wusuopu
日期:2016-06-17 17:43:45
2 [报告]
发表于 2010-08-27 19:35 |只看该作者
for{
   for{
         @loop1;
   }
   @loop2;
}

这是模板?
  1. $template->param( LOOP_ONE => [\@loop1,  LOOP_TWO => \@loop2]);
复制代码
中括号不对?

论坛徽章:
3
戌狗
日期:2014-09-10 17:07:162015年辞旧岁徽章
日期:2015-03-03 16:54:15wusuopu
日期:2016-06-17 17:43:45
3 [报告]
发表于 2010-08-27 20:31 |只看该作者
       <TMPL_LOOP>s within <TMPL_LOOP>s are fine and work as you would expect.  If the syntax for the "param()" call has you stumped, here's an example of a param call with one nested loop:
         $template->param(LOOP => [
                                   { name => 'Bobby',
                                     nicknames => [
                                                   { name => 'the big bad wolf' },
                                                   { name => 'He-Man' },
                                                  ],
                                   },
                                  ],
                         );
       Basically, each <TMPL_LOOP> gets an array reference.  Inside the array are any number of hash references.  These hashes contain the name=>value pairs for a single pass over the loop template.
       Inside a <TMPL_LOOP>, the only variables that are usable are the ones from the <TMPL_LOOP>.  The variables in the outer blocks are not visible within a template loop.  For the computer-science geeks among you, a <TMPL_LOOP> introduces a new scope much like a perl subroutine call. ...

文档

论坛徽章:
0
4 [报告]
发表于 2011-01-06 11:07 |只看该作者
我也碰到相同问题,加了{},还是不对。

$template->param( LOOP_ONE => [{\@loop1,  LOOP_TWO => \@loop2}]);

运行后提示:

HTML::Template->output() : fatal error in loop output : HTML::Template : Attempt to set nonexistent parameter 'array(0x3
609db' - this parameter name doesn't match any declarations in the template file : (die_on_bad_params => 1) at C:/Perl
/site/lib/HTML/Template.pm line 3068

论坛徽章:
0
5 [报告]
发表于 2011-01-06 13:16 |只看该作者
有人回回贴吗?

论坛徽章:
0
6 [报告]
发表于 2011-01-06 14:29 |只看该作者
<TMPL_LOOP NAME=A>
      <TMPL_LOOP NAME=B>
      </TMPL_LOOP>
</TMPL_LOOP>


A =  \@A
B须放在@A里
$B{B}=\@B;
$A[0]=\%B;
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP