angularjs,$http(post)

前端之家收集整理的这篇文章主要介绍了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,"出错了!");
        }

    })
原文链接:https://www.f2er.com/angularjs/144197.html

猜你在找的Angularjs相关文章