$.post(url,dataObj).then(result=>{ //result可以写为(result)
console.log(JSON.stringify(result));
},(e)=>{ //此处的e就是返回的数据结果-只是此处为错误信息的处理
console.log("出現error"+JSON.stringify(e.message));
})
$.when(
$.post('../onesig/pressList.do',{"formCode":formCode})
).done(e=>{
console.log("down:"+JSON.stringify(e));
}).fail(e=>{
console.log("fail:"+JSON.stringify(e));
}).then(result=>{
console.log("then:"+JSON.stringify(result));
})
//理解 当when执行ajax后 成功走done 失败走fail 始终走then 并且then里面可以同时写成功与失败的函数
理论知识@See http://www.cnblogs.com/wangfupeng1988/p/6515779.html