$http({
method : 'POST',
cache: false,
url : baseUrl + '/hcpms/madagascar/updateJobAndTaskStatus.do',
data : {
jobList:$scope.checkJobCode,
taskList:$scope.checkTaskCode
},
headers:{
"Content-Type":"application/json"
}
}).success(function (res) {
alert("success")
}).then(function () {
// 执行后的处理
});
原文链接:https://www.f2er.com/angularjs/149011.html