私の初心者向けの質問で申し訳ありませんが、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;
}
現在ではありません。あなたが ソースコードを見て(2012年10月の時点から) なら、XHR openへの呼び出しは実際には非同期になるようにハードコードされていることがわかります(3番目のパラメータはtrueです):
xhr.open(method, url, true);
あなたは同期呼び出しをしたあなた自身のサービスを書く必要があるでしょう。一般的にJavaScriptの実行の性質上、他のすべてのものがブロックされてしまうため、通常はやりたくないものです。
...しかし、他のすべてをブロックすることが実際に望まれるなら、多分あなたは約束と $ qサービス を調べるべきです。これにより、一連の非同期アクションが完了するまで待機し、それらがすべて完了したら何かを実行することができます。私はあなたのユースケースが何であるかわかりませんが、それは一見の価値があるかもしれません。
それ以外に、自分でロールバックするつもりなら、同期および非同期のAjax呼び出しを行う方法についての詳細な情報 ここで見つけることができます 。
それが役に立つことを願っています。
私はグーグルマップオートコンプリートと統合された約束と統合された工場で働いています、私はあなたが役立つことを望みます。
http://jsfiddle.net/the_pianist2/vL9nkfe3/1/
この要求でautocompleteServiceを置き換える必要があるのは、出荷前の$ http incuidaです。
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;
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;
};
私は最近、ページのリロードによって引き起こされた$ http呼び出しを行いたいという状況に遭遇しました。私が行った解決策:
これはあなたが非同期的にそれをすることができてそしてあなたが通常するように物事を管理することができる方法です。すべてはまだ共有されています。更新したいオブジェクトへの参照を取得します。あなたがあなたのサービスの中でそれを更新するときはいつでも、それは約束を見たり返したりする必要なしにグローバルに更新されます。再バインドすることなくサービス内から基になるオブジェクトを更新できるので、これは本当に素晴らしいことです。使われることを意図している方法で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>
sync XHR は非推奨になっているので、それを当てにしないのが最善です。 sync 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();
}
必要に応じて変更してください。