标签:jsp
$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 () {
// 执行后的处理
});
标签:jsp
原文地址:http://tianjian.blog.51cto.com/3549910/1841589