[racket] WebServer not finding param in POST but does so in GET???

From: J G Cho (gcho at fundingmatters.com)
Date: Mon Dec 3 11:50:56 EST 2012

(define bs (request-bindings req))
...
    [(exists-binding? 'stat bs)
     (handle-post-stat (extract-binding/single 'stat bs))]

The above cond clause evaluates when Browser invokes

    $.ajax({
      type: "GET",
      url: "/abc/xyz",
      data: {stat: JSON.stringify( data )},

But not when POST is used. Why would this be the case?

Curiously,

jGc

Posted on the users mailing list.