javascript – 如何在Angular js中的http请求中发送头数据

前端之家收集整理的这篇文章主要介绍了javascript – 如何在Angular js中的http请求中发送头数据前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在尝试访问安全的Api时,我需要在我的角度http请求中发送标头数据

javascript代码

$http.post('http://localhost/api/validate',user).success(function () {
        $scope.reset();
        $scope.activePath = $location.path('/');

如何在此请求中发送标头数据?

最佳答案
   //store the header data in a variable 
    var headers = { 'Authorization': authToken };

    //Add headers with in your request
    $http.post('http://localhost/api/validate',user,{ headers: headers } ).success(function() 
原文链接:https://www.f2er.com/html/426832.html

猜你在找的HTML相关文章