vote up 0 vote down star

I'm trying to figure out why I'm not seeing params with $.post("/url/", {wtf: 2}).

I'm using this perl:

use strict;
use CGI;

my $cgi = new CGI;
print $cgi->header("text/javascript");
print "'no'";

use Data::Dumper;
warn Dumper({ (map {$_=>$cgi->param($_ )} $cgi->param), postdata=>$cgi->param("POSTDATA") });

When I issue a $.get("/url", {wtf: 2}), I get the results I expect and find wtf is 2 in the logs. When I use $.post("/url/", {wtf: 2}), I don't seem to get any params at all (just a $VAR1 = { postdata=>undef } in the logs).

What am I missing?

Firebug reveals that: Transfer-Encoding is "chunked" and Content-Type is "application/x-www-form-urlencoded; charset=UTF-8". Further, the Post tab seems to show the arguments in the request, but no joy from CGI.

flag

I should say that I've tried with various versions of jquery and get the same results ... 1.1.4, 1.2.2, and 1.3.2. – jettero Feb 24 at 21:47
Mantra: use warnings is more important than use strict. – ysth Feb 25 at 3:11
I use warnings while I'm still writing, but rarely leave it on for production code. – jettero Feb 25 at 13:13
The netcat idea (I actually used tcpdump) showed them coming in as params like they should. Then I noticed that I had shot myself in the foot with a security feature that blocks unwanted params that was blocking the params I wanted. So basically I'm dumb. – jettero Feb 26 at 13:06

2 Answers

vote up 1 vote down check

If you've got access to a linux box, you could set up 'nc' (netcat) to listen on port 80 and see the raw requests you're receiving.

I suspect it's a server-side problem though. Perhaps some Apache configuration is interfering? Sorry I can't be more help.

link|flag
vote up 3 vote down

Could be that your results are coming back neither application/x-www-form-urlencoded nor multipart/form-data. CGI doc has this to say about it:

If POSTed data is not of type application/x-www-form-urlencoded or multipart/form-data, then the POSTed data will not be processed, but instead be returned as-is in a parameter named POSTDATA. To retrieve it, use code like this:

    my $data = $query->param('POSTDATA');
link|flag
POSTDATA seems to be empty also. – jettero Feb 25 at 13:18
Are you testing the result of the map or are you testing $cgi->param("POSTDATA") itself? If the value of POSTDATA is 'a=1&b=2&c=-3', that isn't going to have any resolution in the name-value pairs of the query object. – Axeman Feb 25 at 14:45

Your Answer

Get an OpenID
or

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