我在一个控制器中有数据,现在我想与另一个控制器共享,但两个控制器都有不同的模块。我使用过$ rootscope但它没有用。我使用过服务它也没有用。链接到这里Service
还有其他办法吗?我花了一个星期的时间请帮助我。
(function ()
{
'use strict';
angular
.module('app.toolbar')
.controller('ToolbarController', ToolbarController);
function ToolbarController($rootScope, $mdSidenav, msNavFoldService, $translate, $mdToast, $location, $localStorage, $http, $scope)
{
var vm = this;
vm.name = $localStorage.name;
vm.userId = $localStorage._id;
vm.readNotifications = function(notifId){
$http({
url: 'http://192.168.2.8:7200/api/readNotification',
method: 'POST',
data: {notificationId: notifId, userId: vm.userId}
}).then(function(res){
vm.rslt = res.data.result1;
console.log(vm.rslt);
vm.refresh();
$location.path('/sharedwishlistdetails');
}, function(error){
alert(error.data);
})
}
}
})();
此处存储的数据位于vm.reslt
。
(function ()
{
'use strict';
angular
.module('app.toolbar', [])
.config(config);
/** @ngInject */
function config($stateProvider, $translatePartialLoaderProvider)
{
$translatePartialLoaderProvider.addPart('app/toolbar');
}
})();
现在我想要这个控制器的结果。
(function ()
{
'use strict';
angular
.module('app.sharedwishlistdetails')
.controller('SharedWishlistDetailsController', SharedWishlistDetailsController);
/** @ngInject */
//NotificationsController.$inject = ['$http', '$location'];
function SharedWishlistDetailsController($http, $location, $localStorage, $rootScope, $scope)
{
var vm = this;
vm.uid = $localStorage._id;
}
})();
(function ()
{
'use strict';
angular
.module('app.core')
.factory('shareData', shareDataService);
/** @ngInject */
function shareDataService($resource,$http) {
var shareData = {};
return shareData;
}
})();
答案 0 :(得分:1)
在' app.toolbar'中编写服务模块
angular.module('app.toolbar').service('ServiceA', function() {
this.getValue = function() {
return this.myValue;
};
this.setValue = function(newValue) {
this.myValue = newValue;
}
});
在toolbarController中,注入ServiceA并设置数据 -
vm.readNotifications = function(notifId){
$http({
url: 'http://192.168.2.8:7200/api/readNotification',
method: 'POST',
data: {notificationId: notifId, userId: vm.userId}
}).then(function(res){
vm.rslt = res.data.result1;
ServiceA.setValue(vm.rslt);
console.log(vm.rslt);
vm.refresh();
$location.path('/sharedwishlistdetails');
}, function(error){
alert(error.data);
})
}
现在为' app.sharedwishlistdetails'编写另一项服务。模块 -
angular.module('app.sharedwishlistdetails',['app.toolbar']).service('ServiceB', function(ServiceA) {
this.getValue = function() {
return ServiceA.getValue();
};
this.setValue = function() {
ServiceA.setValue('New value');
}
});
现在在您的SharedWishlistDetailsController控制器中注入ServiceB并访问数据 -
var sharedData = ServiceB.getValue();
答案 1 :(得分:0)
你的代码中的$ rootScope怎么会失败,如果你粘贴你的代码,我们将不胜感激:从不介意这里有一个例子可以帮助你:
所有应用程序都有一个$ rootScope,它是在包含ng-app指令的HTML元素上创建的作用域。 rootScope在整个应用程序中都可用。如果变量在当前作用域和rootScope中具有相同的名称,则应用程序将使用当前作用域中的变量。
angular.module('myApp', [])
.run(function($rootScope) {
$rootScope.test = new Date();
})
.controller('myCtrl', function($scope, $rootScope) {
$scope.change = function() {
$scope.test = new Date();
};
$scope.getOrig = function() {
return $rootScope.test;
};
})
.controller('myCtrl2', function($scope, $rootScope) {
$scope.change = function() {
$scope.test = new Date();
};
$scope.changeRs = function() {
$rootScope.test = new Date();
};
$scope.getOrig = function() {
return $rootScope.test;
};
});