I'm having a killer time trying to create a JSON object to return to a jQuery request.

I'm trying to use the jQuery chained select module

and I'm trying to create the JSDN object using Perl's JSON module.

I have no idea what I'm doing wrong or how I can even debug it, about the best I can do is get a JS dialog box coming up with "A unknown error....".

This is all I was trying to do to create the JSON object, I thought this would be all that is needed, but it's not. Any ideas?

TIA

use JSON;
my %data = (1 => 'val1',
            2 => 'val2',
            3 => 'val3',
           );
my $json_text = to_json(\%data);
print $json_text;
link|improve this question

57% accept rate
feedback

3 Answers

Running the script gives:

{"1":"val1","3":"val3","2":"val2"}

… which is the expected output.

The problem almost certainly lies with whatever code you are using to get the JSON from your server to the client.

link|improve this answer
I'm just printing it out - I thought that was all that was needed? "print $json_text" – Chris Oct 27 '09 at 21:45
@Chris: The code snippet you provided in the question above is correct, and works properly. Try it again yourself in a standalone script and see. (So it must be something else in your script that is wrong.) – Ether Oct 27 '09 at 21:48
Where are you printing it to? What does the output look like? – Quentin Oct 27 '09 at 21:58
feedback

Have the javascript output the response text before processing to a textarea so you can see if there's something failing in transport. Also, you're going to want to put something in front of the data, like "myVar= " so that the data is assigned to something on the other end.

link|improve this answer
Thanks Woolstar, I'll try to figure out how to do that (I know nothing about JQuery) – Chris Oct 27 '09 at 21:46
feedback

Looks like you already figured it out your issue, and if you were wondering why it wasn't working is because the to_json method is not exported from JSON.pm in the older versions of the JSON module. The latest version on CPAN (2.0) exports to_json into your namespace but versions ~1.5 don't and require the JSON::. Many repos still carry this older version, and if you are running on CentOS ~5.3 or an older version of Fedora Core you will have the older JSON.pm.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.