angularjs post 后台 取不到值,修改contentTye 可以解决

前端之家收集整理的这篇文章主要介绍了angularjs post 后台 取不到值,修改contentTye 可以解决前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
var app = angular.module('maplePointApp',[]);
app.config(["$httpProvider",function ($httpProvider) {
    //更改 Content-Type
    $httpProvider.defaults.headers.post["Content-Type"] = "application/x-www-form-urlencoded;charset=utf-8";
    $httpProvider.defaults.headers.post["Accept"] = "*/*";
    $httpProvider.defaults.transformRequest = function (data) {
        //JSON数据转换成字符串形式
        if (data !== undefined) {
            return $.param(data);
        }
        return data;
    };
}])
app.controller('myCtr',function($scope,$http) {
    $scope.initIndex = function () {
        $http({

            method : "post",            url : "${REQ}/maple/point",            data : {
                "id" : 123
            }
        }).success(function(rs) {
            console.log(rs)
            $scope.dataList=rs;

        }).error(function(rs) {
        });
    }
});
原文链接:https://www.f2er.com/angularjs/146852.html

猜你在找的Angularjs相关文章