$scope.fetchQA = function() {
$scope.url = 'js/jsons/QA.json';
$http({method: 'GET', url: $scope.url}).
success(function(data, status, headers, config) {
$scope.QA = data;
});
}
$scope.fetchQA();
function x(){
alert(QA);
}
function x
$http.get のコールバックとして使用するにはどうすればよいですか? または、データを受信した後にのみ x() が実行されるようにする他の方法はありますfetchQA
か?