我有問題發佈數據到我本地的appengine應用程序使用JQuery Ajax。這裏被簡化客戶端代碼:谷歌Appengine&jQuery:錯誤414(請求的URI太長)
text_to_save = 'large chunk of html here'
req = '/story/edit?story_id=' + story_id + '&data=' + text_to_save;
$.post(req, function(data) {
$('.result').html(data);
});
這裏被簡化服務器端代碼:
class StoryEdit(webapp.RequestHandler):
def post(self):
f = Story.get(self.request.get('story_id'))
f.html = self.request.get('data')
f.put()
的誤差414(請求URI太長)。我究竟做錯了什麼?
由於某些原因(錯誤或網站規則),我無法接受正確答案,所以謝謝。 – SM79 2010-09-16 12:21:20