The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Template::Flute::Filters::JsonVar - JSON to Javascript variable filter

DESCRIPTION

Takes a Perl structure or a JSON string and returns Javascript which parses the JSON string with Jquery and assigns it to the variable json.

Example:

    {username => 'shopper@nitesi.biz', city => 'Vienna'};

results in the following JavaScript:

    var json = $.parseJSON('{"post":"Vienna","username":"shopper@nitesi.biz"}');

METHODS

init

The init method allows you to set the following options:

engine

Value is either jquery or eval.

filter

Filters the given Perl structure to a JSON string.