AngularJs,$http()中Post提交方式

前端之家收集整理的这篇文章主要介绍了AngularJs,$http()中Post提交方式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

$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

猜你在找的Angularjs相关文章