up vote 4 down vote favorite
share [g+] share [fb]

In my controller/request-handler, I have the following code:


def monkey(self, **kwargs):
  cherrypy.response.headers['Content-Type'] = "application/json"
  message = {"message" : "Hello World!" }
  return message
monkey.exposed = True

And, in my view, I've got this javascript:


$(function() {
  var body = document.getElementsByTagName("body")[0];
  $.ajaxSetup({ 
    scriptCharset : "utf-8",
    contentType: "application/json; charset=utf-8"
  });
  $.post("http://localhost/wsgi/raspberry/monkey", "somePostData",
    function(data) {
      try{
        var response = jQuery.parseJSON(data);
        body.innerHTML += "<span class='notify'>" + response + "</span>";
      }catch(e){ 
        body.innerHTML += "<span class='error'>" + e + "</span>";
      }
    }
  );
});

And finally, here's my problem. I get no JSON response and I'm not sure why.

Secondly, would someone be able to explain how to format data in my controller/request-handler response as a JSON response in the simplest way possible, without using tools?

link|improve this question

Do you know that CherryPy supplies a decorator for exposing functions? Just put @cherrypy.exposed on the line above the def monkey... – detly Sep 4 '10 at 5:25
feedback

2 Answers

up vote 4 down vote accepted

Not sure what you mean by "without using tools" -- Python is "a tool", right?

With just Python and its standard library (2.6 or better), add at the top of your module

import json

and change the return statement to

return json.dumps(message)
link|improve this answer
In Python 2.5, you can use the simplejson package. – detly Sep 4 '10 at 5:24
Actually, what I meant by saying "without tools" was without using decorators. I'm still getting used to python's idiosyncrasies. Yes, I have seen simplejson used, but I want to be able to do it using the base libraries first. – bitcycle Sep 4 '10 at 6:29
@Sean, simplejson is just the older version of json, from before the latter was incorporated into the Python standard library. IOW, json is not any more "base" than simplejson, it's just a "packaging" decision by the PSF (specifically by the core developers of Python itself and the standard library that goes with it). – Alex Martelli Sep 4 '10 at 14:34
1  
"Tool" is CherryPy jargon for "plugin". There's a whole subsystem for using them and making your own: docs.cherrypy.org/dev/intro/concepts/tools.html – fumanchu Sep 6 '10 at 1:16
@fumanchu, tx for the translation!-) – Alex Martelli Sep 6 '10 at 1:50
feedback

Note that in CherryPy 3.2 (almost done!) there will be a pair of JSON tools to make the above even easier:

@cherrypy.expose
@tools.json_out()
def monkey(self, **kwargs):
    return {"message": "Hello World!"}

json_out encodes the output and sets the header for you.

link|improve this answer
Thanks for this. In reading Alex's post above and doing some testing on my own, I realize that your suggestion is more succinct, explicit, and readable than using JSON.dumps(). – bitcycle Sep 5 '10 at 22:37
CherryPy 3.2 has been released, by the way :) – fumanchu May 15 '11 at 23:45
feedback

Your Answer

 
or
required, but never shown

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