假设我使用 ajax 调用触发了多个 Python 函数。有没有办法接收多个响应(表明它们都成功了?)。一个抽象的例子:
function triggerPython(){
$.ajax({
url:"/triggerPython",
type:'POST',
data: whatever,
success: function(response){
alert(response);
}
});
}
蟒蛇:
class triggerPython(webapp.RequestHandler):
def post(self):
function_1()
self.response.out("Function 1 done!")
function_2()
self.response.out("Function 2 done!")
function_3()
self.response.out("Function 3 done!")