Where can I find a Perl module for converting a Perl data structure into a JavaScript one? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T04:41:59Zhttp://stackoverflow.com/feeds/question/134656http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/134656/where-can-i-find-a-perl-module-for-converting-a-perl-data-structure-into-a-javasc4Where can I find a Perl module for converting a Perl data structure into a JavaScript one?someguy2008-09-25T17:18:31Z2008-09-26T15:23:53Z
<p>e.g. (Mason code):</p>
<pre><code> 16 % # convert our @cti data structure into a javascript one
17 var cti = [
18 % foreach my $cti_category (@cti) {
19 {
20 label: "<% $cti_category->{'label'} %>",
21 value: "<% $cti_category->{'value'} %>",
22 children: [
23 % foreach my $cti_type (@{$cti_category->{'children'}}) {
24 {
25 label: "<% $cti_type->{'label'} %>",
26 value: "<% $cti_type->{'value'} %>",
27 },
28 % }
29 ]
30 },
31 % }
32 ];
</code></pre>
http://stackoverflow.com/questions/134656/where-can-i-find-a-perl-module-for-converting-a-perl-data-structure-into-a-javasc/134672#1346726Answer by moritz for Where can I find a Perl module for converting a Perl data structure into a JavaScript one?moritz2008-09-25T17:20:27Z2008-09-25T17:20:27Z<p>Check out <a href="http://search.cpan.org/perldoc?JSON" rel="nofollow">JSON</a> or <a href="http://search.cpan.org/perldoc?JSON::XS" rel="nofollow">JSON::XS</a>.</p>
<p>To elaborate a bit more, JSON is "JavaScript Object Notation", and the two modules above convert perl data structures into that format.</p>
http://stackoverflow.com/questions/134656/where-can-i-find-a-perl-module-for-converting-a-perl-data-structure-into-a-javasc/134678#1346780Answer by Dan for Where can I find a Perl module for converting a Perl data structure into a JavaScript one?Dan2008-09-25T17:20:56Z2008-09-25T17:20:56Z<p><a href="http://search.cpan.org/~makamaka/JSON-2.12/lib/JSON.pm" rel="nofollow">JSON!</a></p>
http://stackoverflow.com/questions/134656/where-can-i-find-a-perl-module-for-converting-a-perl-data-structure-into-a-javasc/134682#1346820Answer by Kyle Burton for Where can I find a Perl module for converting a Perl data structure into a JavaScript one?Kyle Burton2008-09-25T17:21:43Z2008-09-25T17:21:43Z<p>The <a href="http://search.cpan.org/~makamaka/JSON-2.12/lib/JSON.pm" rel="nofollow">JSON</a> module will convert data structures - it's basically a to/from JSON serializer. </p>
http://stackoverflow.com/questions/134656/where-can-i-find-a-perl-module-for-converting-a-perl-data-structure-into-a-javasc/135182#13518212Answer by Penfold for Where can I find a Perl module for converting a Perl data structure into a JavaScript one?Penfold2008-09-25T18:48:05Z2008-09-25T18:48:05Z<p>JSON stands for JavaScript Object Notation, which is the format you're looking for.</p>
<p>Unfortunately, none of the modules you're looking for are in the Perl core, but they are available on CPAN, as a quick <a href="http://search.cpan.org/search?query=JSON&mode=all" rel="nofollow">search</a> will reveal.</p>
<p>I'd actually recommend installing <a href="http://search.cpan.org/author/RBERJON/JSON-Any-1.17/lib/JSON/Any.pm" rel="nofollow">JSON::Any</a> as a wrapper, as well as <a href="http://search.cpan.org/author/MLEHMANN/JSON-XS-2.2222/XS.pm" rel="nofollow">JSON::XS</a> (if you have a C compiler) or one of <a href="http://search.cpan.org/author/MAKAMAKA/JSON-2.12/lib/JSON.pm" rel="nofollow">JSON</a> and <a href="http://search.cpan.org/~audreyt/YAML-Syck-1.05/lib/JSON/Syck.pm" rel="nofollow">JSON::Syck</a> if you don't. JSON::Any provides an <a href="http://en.wikipedia.org/wiki/Interface_pattern" rel="nofollow">interface class</a> on top of several other JSON modules (you can choose, or let it pick from what's installed) that's independent of which module you wind up using. That way, if your code should need to be ported elsewhere, and (say) the target machine can install JSON::XS when you can't, you get a performance boost without any extra code.</p>
<pre><code>use JSON::Any;
my $j = JSON::Any->new;
$json = $j->objToJson($perl_data);
</code></pre>
<p>Like so.</p>