AngularJS日志JSON

前端之家收集整理的这篇文章主要介绍了AngularJS日志JSON前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法输出来自服务器的 JSON响应?我正在尝试以下方式,产生不良输出
$http({ method: 'GET',url: 'getUser' })
        .success(function (data,status) {
            $scope.user = data;
            console.log("User="+data);})
        .error(function (data,status) {
            $scope.status = status;
            if(status==403)
                $location.path( "/" );
        });

输出

User=[object Object]
您可以在打印前对其进行字符串化.
console.log("User = " + JSON.stringify(data));
原文链接:https://www.f2er.com/angularjs/141808.html

猜你在找的Angularjs相关文章