Angular js http请求发送和jquery的ajax一样的数据设置方式

前端之家收集整理的这篇文章主要介绍了Angular js http请求发送和jquery的ajax一样的数据设置方式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
$http({

            method: 'POST',url: 'ajsave',data: data,// pass in data as strings

            headers: {'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'}  

        }).success(function (data) {

                console.log(data);

 

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

猜你在找的Angularjs相关文章