2つの角度コントローラ間の通信を設定しようとしています(サービスはオプションではありません)。私は必死に失敗しています。ここ
が、私は両方$発すると$あなたが$localStorage
、$stateParams
または$cookies
、あるいはを使用することができます
invoiceApp.controller('masterReportConrtoller', ['$scope', '$location', 'authService', 'usSpinnerService', 'dateService', 'settingsService','$rootScope',
function ($scope, $location, authService, usSpinnerService, dateService, settingsService, $rootScope)
////Is User Valid
////
//$rootScope.$on("masterReportConrtoller", function() {
// $scope.parentmethod();
// });
//$scope.parentmethod = function() {
// //
$scope.masterReportConrtoller.getUserDetails = function() {
debugger;
settingsService.getUserDetails().then(function (response) {
var loginData = {
userName: response.d.user.Email,
password: response.d.user.UserPassword
};
authService.login(loginData).then(function (response) {
debugger;
$scope.Limit = response.d.organization.Limit;
});
$scope.Limit = response.d.organization.Limit;
$scope.DocumentUsage = response.d.organization.DocumentUsage;
$scope.ExpirationDate = $scope.DateConvertfromJson(response.d.organization.ExpirationDate);
var fullDate = new Date();
if (fullDate <= $scope.ExpirationDate) {
$scope.ISvalidUser = false;
$rootScope.$broadcast('masterReportConrtoller', false);
}
else {
$rootScope.$broadcast('masterReportConrtoller', true);
}
});
}
}]);
invoiceApp.controller('InvoiceController', ['$scope', '$location', '$cookieStore', 'documentService', 'dialogs', 'usSpinnerService', 'settingsService', 'associatedEmailsService', '$rootScope',
function ($scope, $location, $cookieStore, documentService, dialogs, usSpinnerService, settingsService, associatedEmailsService, $rootScope) {
$rootScope.$on('masterReportConrtoller');}
イベントの発生時に処理するコールバック関数が必要です。 '$ rootScope。$ on( 'masterReportConrtoller'、関数(イベント、データ){//データで何かを実行});'。 – eminlala
ページローディングのイベントを使用できますか? –
この場合、 'event'は' $ rootScope。$ broadcast( 'masterReportConrtoller'、false); 'でトリガーされた実際のイベントです。 – eminlala