Comment recevoir JSON à partir de requêtes POST dans CherryPy?Comment recevoir JSON dans une requête POST dans CherryPy?
J'ai été à this page, et bien que ce soit un bon travail expliquant l'API, ses paramètres, et ce qu'il fait; Je n'arrive pas à comprendre comment les utiliser pour analyser le JSON entrant dans un objet.
Voici ce que j'ai jusqu'à présent:
import cherrypy
import json
from web.models.card import card
from web.models.session import getSession
from web.controllers.error import formatEx, handle_error
class CardRequestHandler(object):
@cherrypy.expose
def update(self, **jsonText):
db = getSession()
result = {"operation" : "update", "result" : "success" }
try:
u = json.loads(jsonText)
c = db.query(card).filter(card.id == u.id)
c.name = u.name
c.content = u.content
rzSession.commit()
except:
result["result"] = { "exception" : formatEx() }
return json.dumps(result)
Et, voici mon appel jquery pour faire de la poste
function Update(el){
el = jq(el); // makes sure that this is a jquery object
var pc = el.parent().parent();
pc = ToJSON(pc);
//$.ajaxSetup({ scriptCharset : "utf-8" });
$.post("http://localhost/wsgi/raspberry/card/update", pc,
function(data){
alert("Hello Update Response: " + data);
},
"json");
}
function ToJSON(h){
h = jq(h);
return {
"id" : h.attr("id"),
"name" : h.get(0).innerText,
"content" : h.find(".Content").get(0).innerText
};
}
thx pour vous postez, il est à mon humble avis la manière la plus propre pour le faire. –
'cherrypy.request' n'a pas d'attribut' json' – IAbstract
@IAbstract vérifie que vous avez le décorateur '' '@ cherrypy.tools.json_in()' ''. –