angularjs,$http(post)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了angularjs,$http(post)相关的知识,希望对你有一定的参考价值。
$http(post)
$http({
method: ‘post‘,
url: ‘/BSWQI/start_Cal‘,
dataType: "json",
contentType: "application/json",
data: { app_key: "111", lstData: $scope.relist },
}).then(function successCallback(res) {
// 请求成功执行代码
var result = res.data;
if (result.status == 200) {
var map = new Map();
$("[classname]").each(function (i) {
$(this).removeAttr("class");
if ($(this).attr("classname") == map.get(result.data)) {
$(this).attr("class", map.get(result.data));
}
});
$(document).scrollTop($(document).height());//滚动到最下方
toastr.success(‘评估成功!‘, ‘提示信息!‘);
}
else {
toastr.error(result.msg, "出错了!");
}
})
以上是关于angularjs,$http(post)的主要内容,如果未能解决你的问题,请参考以下文章
Angularjs `$http` 发送 POST 而不是 GET
后端接收不到AngularJs中$http.post发送的数据的问题