How to add a vmethod to template toolkit when using Dancer?
If there isn't a way, how can I add a function /how to execute a ref to function which is added to the tokens/?
|
How to add a vmethod to template toolkit when using Dancer? If there isn't a way, how can I add a function /how to execute a ref to function which is added to the tokens/?
| |||
|
feedback
|
|
To add a custom vmethod to TT in Dancer requires a bit of messing with the direct TT package variables. I do wish that the Dancer::Template object provide access to the underlying template object. Here is snippet that could go in a Dancer route:
It is probably best to move this into its own module Then you can use it in your templates like: # in route get '/' => sub { template 'index', { veggies => [ qw( radishes lettuce beans squash )] }; };
If it went well then you should see: | |||
feedback
|
|
I'm not sure about adding a vmethod, but I think the second thing can be done like this:
| |||
|
feedback
|