我想在分配问卷及其详细信息(如姓名,姓氏等)后保存候选人的详细信息。但是,我在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帖子?