很抱歉我的新手问题,但AngularJS文档对于弄清楚一些基本的东西并不是非常明确或广泛。
有没有办法与AngularJS进行同步调用?
服务:
myService.getByID = function (id) {
var retval = null;
$http({
url: "/CO/api/products/" + id,
method: "GET"
}).success(function (data, status, headers, config) {
retval = data.Data;
});
return retval;
}
答案 0 :(得分:112)
目前不是。如果您look at the source code (from this point in time Oct 2012),您将看到对XHR open的调用实际上是硬编码为异步(第三个参数为true):
xhr.open(method, url, true);
您需要编写自己的同步调用服务。通常情况下,由于JavaScript执行的性质,您通常不会想要这样做,因此最终会阻止其他所有内容。
...但是......如果实际上需要阻止其他所有内容,也许您应该查看承诺和$q service。它允许您等待一组异步操作完成,然后在它们全部完成后执行。我不知道你的用例是什么,但这可能值得一看。
除此之外,如果你打算自己动手,有关如何进行同步和异步ajax调用的更多信息can be found here。
我希望这有用。
答案 1 :(得分:12)
我曾与一家集成谷歌地图自动完成和承诺的工厂合作,我希望你服务。
http://jsfiddle.net/the_pianist2/vL9nkfe3/1/
您只需要在出厂前使用$ http incuida替换此请求的autocompleteService。
app.factory('Autocomplete', function($q, $http) {
和$ http请求
var deferred = $q.defer();
$http.get('urlExample').
success(function(data, status, headers, config) {
deferred.resolve(data);
}).
error(function(data, status, headers, config) {
deferred.reject(status);
});
return deferred.promise;
<div ng-app="myApp">
<div ng-controller="myController">
<input type="text" ng-model="search"></input>
<div class="bs-example">
<table class="table" >
<thead>
<tr>
<th>#</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="direction in directions">
<td>{{$index}}</td>
<td>{{direction.description}}</td>
</tr>
</tbody>
</table>
</div>
'use strict';
var app = angular.module('myApp', []);
app.factory('Autocomplete', function($q) {
var get = function(search) {
var deferred = $q.defer();
var autocompleteService = new google.maps.places.AutocompleteService();
autocompleteService.getPlacePredictions({
input: search,
types: ['geocode'],
componentRestrictions: {
country: 'ES'
}
}, function(predictions, status) {
if (status == google.maps.places.PlacesServiceStatus.OK) {
deferred.resolve(predictions);
} else {
deferred.reject(status);
}
});
return deferred.promise;
};
return {
get: get
};
});
app.controller('myController', function($scope, Autocomplete) {
$scope.$watch('search', function(newValue, oldValue) {
var promesa = Autocomplete.get(newValue);
promesa.then(function(value) {
$scope.directions = value;
}, function(reason) {
$scope.error = reason;
});
});
});
问题本身将在:
deferred.resolve(varResult);
当你做得很好并且请求时:
deferred.reject(error);
出现错误时,然后:
return deferred.promise;
答案 2 :(得分:5)
var EmployeeController = ["$scope", "EmployeeService",
function ($scope, EmployeeService) {
$scope.Employee = {};
$scope.Save = function (Employee) {
if ($scope.EmployeeForm.$valid) {
EmployeeService
.Save(Employee)
.then(function (response) {
if (response.HasError) {
$scope.HasError = response.HasError;
$scope.ErrorMessage = response.ResponseMessage;
} else {
}
})
.catch(function (response) {
});
}
}
}]
var EmployeeService = ["$http", "$q",
function ($http, $q) {
var self = this;
self.Save = function (employee) {
var deferred = $q.defer();
$http
.post("/api/EmployeeApi/Create", angular.toJson(employee))
.success(function (response, status, headers, config) {
deferred.resolve(response, status, headers, config);
})
.error(function (response, status, headers, config) {
deferred.reject(response, status, headers, config);
});
return deferred.promise;
};
答案 3 :(得分:4)
我最近遇到了一种情况,我希望通过页面重新加载来触发$ http调用。我采用的解决方案:
答案 4 :(得分:2)
这是一种可以异步操作并像平常一样管理事物的方法。 一切仍然是共享的。您将获得要更新的对象的引用。每当您在服务中更新它时,它都会全局更新,而无需查看或返回承诺。 这非常好,因为您可以从服务中更新底层对象,而无需重新绑定。使用Angular的方式意味着使用它。 我认为让$ http.get / post同步可能是一个坏主意。您将在脚本中得到明显的延迟。
app.factory('AssessmentSettingsService', ['$http', function($http) {
//assessment is what I want to keep updating
var settings = { assessment: null };
return {
getSettings: function () {
//return settings so I can keep updating assessment and the
//reference to settings will stay in tact
return settings;
},
updateAssessment: function () {
$http.get('/assessment/api/get/' + scan.assessmentId).success(function(response) {
//I don't have to return a thing. I just set the object.
settings.assessment = response;
});
}
};
}]);
...
controller: ['$scope', '$http', 'AssessmentSettingsService', function ($scope, as) {
$scope.settings = as.getSettings();
//Look. I can even update after I've already grabbed the object
as.updateAssessment();
在视图中的某个地方:
<h1>{{settings.assessment.title}}</h1>
答案 5 :(得分:0)
由于sync XHR被弃用,因此最好不要依赖它。如果需要执行同步POST请求,可以使用服务中的以下帮助程序来模拟表单帖子。
它的工作原理是创建一个带有隐藏输入的表单,该表单将发布到指定的URL。
//Helper to create a hidden input
function createInput(name, value) {
return angular
.element('<input/>')
.attr('type', 'hidden')
.attr('name', name)
.val(value);
}
//Post data
function post(url, data, params) {
//Ensure data and params are an object
data = data || {};
params = params || {};
//Serialize params
const serialized = $httpParamSerializer(params);
const query = serialized ? `?${serialized}` : '';
//Create form
const $form = angular
.element('<form/>')
.attr('action', `${url}${query}`)
.attr('enctype', 'application/x-www-form-urlencoded')
.attr('method', 'post');
//Create hidden input data
for (const key in data) {
if (data.hasOwnProperty(key)) {
const value = data[key];
if (Array.isArray(value)) {
for (const val of value) {
const $input = createInput(`${key}[]`, val);
$form.append($input);
}
}
else {
const $input = createInput(key, value);
$form.append($input);
}
}
}
//Append form to body and submit
angular.element(document).find('body').append($form);
$form[0].submit();
$form.remove();
}
根据您的需要进行修改。
答案 6 :(得分:-4)
用Promise.all()
方法包裹你的电话怎么样,即
Promise.all([$http.get(url).then(function(result){....}, function(error){....}])
根据MDN
Promise.all等待所有履行(或第一次拒绝)