I have a post route which is returning params for use in a specific template (actions.tt). Within that template, I'm loading a div (using jQuery) with a view (dirmain.tt) of a directory using the DirectoryView plugin. My problem is that I need to pass a param to the DirectoryView template before rendering the main template (action.tt).The param (dev) needs to be included in the the Directory listing.
Perl portion:
Use Dancer;
....
post "/" => sub {
template 'actions.tt', {
'dev' => param('dev'),
};
Templates:
actions.tt
....
<div id="dir">
<script type="text/javascript">
$('#dir').load('/files/[% dev %]');
</script>
</div>
....
dirmain.tt
....
how do I pass [% dev %] here before the action.tt is rendered by the browser?
....
Would using a hook of some sort fulfill this? Your help is much appreciated. Thanks!
actions.ttis compiled by Perl (which wouldn't make much sense)? Anyway, I don't know Dancer, but you probably want to accesssession->uri()in your template (setup to access it somehow), or if that wouldn't work for some reason, you could pass value ofdevas some parameter when requesting,load('/files/[% dev %]?x=[% dev %]')and useparam "x". Just some random thoughts. – Qtax Dec 28 '11 at 22:09