angular js:如何在一个函数中发布两个http帖子?

时间:2016-04-15 02:45:15

标签: angularjs angular-http

我想在分配问卷及其详细信息(如姓名,姓氏等)后保存候选人的详细信息。但是,我在web api中分两部分进行。

这是我的角度控制器代码。

MainApp.controller('CandidateController', ['$scope', '$window', '$http', '$location', '$routeParams', '$filter', '$mdDialog', function ($scope, $window, $http, $location, $routeParams, $filter, $mdDialog) {

    $scope.saveCandidate = function () {


        if ($scope.mailingSameAsPermanent ) {

            $scope.candidateData.MailingAddress.Address1 = "Same";
        }

        $http.post('api/Candidate/AddCandidate', JSON.stringify($scope.candidateData))
            .then(function () { $location.path("/candidate"); },
                    function () { $scope.message = "Save error"; })
        $http.post('api/Candidate/AssignQuestionnaire', 

JSON.stringify($scope.candidateData))
            .then(function () { $location.path("/candidate"); },
                        function () { $scope.message = "Save error"; })
        };
}]);

如何在一个范围内发布两篇http帖子?

0 个答案:

没有答案