Как использовать движок Google с помощью ajax (json)?
Теперь у меня есть это, но я получил эту ошибку:
raise ValueError("No JSON object could be decoded")
ValueError: No JSON object could be decoded
from google.appengine.ext import webapp
from google.appengine.ext.webapp.util import run_wsgi_app
import simplejson as json
class AjaxHandler(webapp.RequestHandler):
def post(self):
args = json.loads(self.request.body)
self.response.headers['Content-Type'] = 'application/json'
self.response.out.write('Hello, webapp World!')
application = webapp.WSGIApplication(
[('/AJAX', AjaxHandler)],
debug=True)
def main():
run_wsgi_app(application)
if __name__ == "__main__":
main()
и javascript + jquery:
var Server = function() {
};
Server.prototype = {
init: function(ajaxTargetUrl) {
this.ajaxTargetUrl = ajaxTargetUrl;
},
request: function(service, data) {
$.ajax({
url: this.ajaxTargetUrl,
context: document.body,
success: function(data) {
$('body').append('<p>'+data+'</p>');
},
error: function(){
$('body').append('<p>error</p>');
},
data: data,
type: 'POST',
dataType: 'json'
});
}
};
var APP = ( function() {
var server = new Server();
server.init('http://localhost:9999/AJAX');
server.request('questions.all', {test:'hey', y:99});
}());
my self.request.body = str: test = hey & y = 99