Tagged Questions
4
votes
4answers
916 views
Where can I find a Perl module for converting a Perl data structure into a JavaScript one?
e.g. (Mason code):
16 % # convert our @cti data structure into a javascript one
17 var cti = [
18 % foreach my $cti_category (@cti) {
19 {
20 label: ...
1
vote
1answer
1k views
How can I use JSON and Perl (HTML::Mason) to create dynamic web page with AJAX?
I'm some kind of lost with the way i have to deal with Javascript, JSON and Perl and most of the examples are in PHP which is not helpfull for me.
I have a page (called main.html) where i have a ...