假设我以以下方式使用 jQuery 执行了 AJAX 调用:
key = 'boo'
$.ajax({
type: 'GET',
async: true,
url: '/output',
data: JSON.stringify({'location':key}),
success: function(data) {
}
});
我的 Python App Engine 代码中有一条路由接收“/输出”上的调用,但我怎样才能让它访问我在 AJAX 调用中传递的数据?即如何填写以下内容:
class OutputRoute(webapp.RequestHandler):
def get(self):
# something goes here to get the data from above