in reply to HTML::Template and hashes of hashes
I hate to say it ... but i would use TT here instead, since it works better with your existing data structure:my $VAR1 = { 'apptimeupdated' => '20040315145142', 'apptype' => [{ 'apt_defstatus' => [{ 'name' => 'Pending', }], 'value' => '50', }], }; my $tmpl = HTML::Template->new(filehandle => \*DATA); $tmpl->param($VAR1); print $tmpl->output; __DATA__ <tmpl_var apptimeupdated> <tmpl_loop apptype> <tmpl_var value> <tmpl_loop apt_defstatus> <tmpl_var name> </tmpl_loop> </tmpl_loop>
OK ... so i don't hate to say it. TT rocks. ;)my $VAR1 = { 'apptimeupdated' => '20040315145142', 'apptype' => { 'apt_defstatus' => { 'name' => 'Pending', }, 'value' => '50', }, }; my $tt = Template->new; $tt->process(\*DATA, $VAR1) || die $tt->error(); __DATA__ [% apptimeupdated %] [% apptype.value %] [% apptype.apt_defstatus.name %]
jeffa
L-LL-L--L-LL-L--L-LL-L-- -R--R-RR-R--R-RR-R--R-RR B--B--B--B--B--B--B--B-- H---H---H---H---H---H--- (the triplet paradiddle with high-hat)
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: HTML::Template and hashes of hashes
by jdtoronto (Prior) on Mar 16, 2004 at 01:29 UTC |