bindclub()とdisplayevent()の2つの関数があります。 2つ目のイベントに依存している私も、NG-のinitの両方の機能を入れしようとした最初のalways.Iを実行するbindclub()を確保したいが、それはまた2つの関数のうち1つが最初に実行されるようにする方法
angular.module('app', []).controller("EventCtrl",EventController);
EventController.$inject = ["$scope", "$http", "$window"];
function EventController($scope, $http, $window) {
$scope.bindclub = function() {
$http({
url: '/Master/bindclub',
method: 'post',
}).then(function (response) {
debugger
$scope.clubidname = response.data;
}, function() { alert("Error in binding club"); });
}
$scope.displayevent = function() {
$http({
url: '/Master/displayevent',
method: 'post',
}).then(function (response) {
alert('Displayed');
}, function() { alert('Error in display event'); });
}
$scope.bindclub();
$scope.displayevent();
}
[JavaScriptでイベントをトリガする方法は?](http://stackoverflow.com/questions/2490825/how-to-trigger-event-in-javascript) – ultrajohn