$rootScope.$广播不工作
$rootScope.$broadcast not working
我正在尝试获取 $rootScope.$broadcast 来刷新我的视图。
服务是-
var app = angular.module("productsApp", [])
.service("serviceProvider", function ($http) {
this.getDatas = function getDatas(data) {
return $http({
method: 'POST', url: serviceUrl + '/GetProductsByCategoryOrName', headers: {
'Authorization': apiKey
},
data: data
})
}
return this
}).factory("sharedService", function ($rootScope) {
var mySharedService = {};
mySharedService.values = [];
mySharedService.passData = function (newData) {
mySharedService.values = newData;
$rootScope.$broadcast('dataPassed', newData);
}
return mySharedService;
});
通过控制器调用-
function searchProductsController($scope, $window, serviceProvider, sharedService) {
$scope.submit = function () {
var data = { "query": $scope.searchText, "categoryId": "976759", "pageIndex": 0, "sortDirection": "asc" };
serviceProvider.getDatas(data).then(function (response) {
var result = response;
sharedService.passData(result.data.data);
});
}
};
在此控制器中 sharedService.passData
,它将新数组传递给服务方法。然后它试图通过以下行广播它的变化 - $rootScope.$broadcast('dataPassed', newData)
我不知道为什么它不广播视图的更改。是否有任何其他方式来广播更改?
注-
我之前的问题 How to transfer data between controllers 对我没有任何帮助。
编辑
到目前为止,我已经改变了听众-
mySharedService.passData = function (newData) {
$rootScope.$broadcast('dataPassed', newData)
}
$rootScope.$on('dataPassed', function (newData) {
mySharedService.values = newData;
})
但是还是无法刷新视图
你应该听听你在广播什么:
$rootScope.$on('dataPassed', function(data){
console.log(data);
});
此参考可能有帮助:Why do we use $rootScope.$broadcast in AngularJS?
当您使用 $broadcast 或 $emit 时。你应该有 $scope.$on 来收听那个事件。
$scope.$on('dataPassed', function(){ //code go here });
编辑: 更新问题要求的工作代码
var app = angular.module("productsApp", [])
.service("serviceProvider", function ($http) {
this.getDatas = function getDatas(data) {
return $http({
method: 'POST', url: serviceUrl + '/GetProductsByCategoryOrName', headers: {
'Authorization': apiKey
},
data: data
});
}
return this
}).factory("sharedService", ['$rootScope', function ($rootScope) {
var mySharedService = {
values: [],
setValues: function(data){
if(data){
mySharedService.values.length = 0;
data.forEach(function(item){
mySharedService.values.push(item);
});
}
}
};
return mySharedService;
}]);
function GetController($scope, serviceProvider, sharedService, $rootScope) {
var shareData = sharedService;
$scope.products = sharedService.values;
$scope.shareData = sharedService;
var data = { "query": "grocery", "categoryId": "976759", "pageIndex": 0, "sortDirection": "asc" };
serviceProvider.getDatas(data).then(function (response) {
sharedService.setValues(response.data.data);
});
}
function searchProductsController($scope, $window, serviceProvider, sharedService, $rootScope) {
$scope.submit = function () {
var data = { "query": $scope.searchText, "categoryId": "976759", "pageIndex": 0, "sortDirection": "asc" };
serviceProvider.getDatas(data).then(function (response) {
sharedService.setValues(response.data.data);
});
}
};
你应该放一个监听器来监听广播事件。广播事件不会直接在视图 html 上直接更新您的视图数据。您必须在作用域上使用 $on
来绑定作用域上的事件。在它的回调函数里面。您将受益于获取广播数据并再次将检索数据重新分配给范围变量以获取更新的绑定。
代码
var app = angular.module("productsApp", [])
.service("serviceProvider", function($http) {
this.getDatas = function getDatas(data) {
return $http({
method: 'POST',
url: serviceUrl + '/GetProductsByCategoryOrName',
headers: {
'Authorization': apiKey
},
data: data
})
}
return this;
}).factory("sharedService", ['$rootScope', function($rootScope) {
var mySharedService = {};
mySharedService.values = [];
mySharedService.passData = function(newData) {
mySharedService.values = newData;
$rootScope.$broadcast('dataPassed', newData)
}
return mySharedService;
}]);
function GetController($scope, serviceProvider, sharedService, $rootScope) {
var data = {
"query": "grocery",
"categoryId": "976759",
"pageIndex": 0,
"sortDirection": "asc"
};
serviceProvider.getDatas(data).then(function(response) {
sharedService.passData(response.data.data);
});
//listener should register when controller loads
$scope.$on('dataPassed', function(event, newData) {
sharedService.values = newData;
$scope.products = sharedService.values;
})
}
function searchProductsController($scope, $window, serviceProvider, sharedService, $rootScope) {
$scope.submit = function() {
var data = {
"query": $scope.searchText,
"categoryId": "976759",
"pageIndex": 0,
"sortDirection": "asc"
};
serviceProvider.getDatas(data).then(function(response) {
var result = response;
sharedService.passData(result.data.data);
});
}
//listener should register when controller loads
$scope.$on('dataPassed', function(event, newData) {
console.log(newData);
sharedService.values = newData;
})
};
@Manoz 至于你之前的回答,我已经给你答案了。我也为此更新了 plunker。至于使用 $rootscope.
,你有 2 个参数,其中一个是事件,下一个是你正在广播的数据。我在两个答案中都嘲笑了您的 api 电话,以使您更加理解。
这里是 plunker 使用 $rootscope
:http://plnkr.co/edit/MBzDMRll5Z4CjusY5QLN?p=preview
<html>
<head>
<title>Angular JS Controller</title>
<script src = "http://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>
</head>
<body>
<h2>AngularJS Sample Application</h2>
<div ng-app = "app" >
<div ng-controller="searchProductsController">
<input ng-model="searchText"/>
<button ng-click="setPlace(searchText)">Enter Search id</button>
</div>
<div ng-controller="GetController">
<div ng-repeat="product in products">
<h3>{{product.name}}</h3>
</div>
</div>
</div>
<script>
var app = angular.module('app', []);
app.run(['$rootScope', function($rootScope){
$rootScope.test = 123;
}]);
app.factory("Service", function ($rootScope) {
function passData(newData) {
alert('i am here');
$rootScope.$broadcast('dataPassed', newData);
}
return {
passData: passData
}
}).factory("dataService",function($http){//mock for getting values from api
return{
getComments:function (roomid){
if(roomid==1){
var data = [{"name":"alex","place":"kathmandu"},{"name":"god","place":"seattle"}];
return data;
}
if(roomid==2)
{
var newdata = [{"name":"newname","place":"kathmandu"},{"name":"newname2","place":"seattle"}];
return newdata;
}
}
}
});
app.controller('searchProductsController',function($scope, Service,$http,dataService) {
$scope.setPlace = function (searchText) {
var newdata = dataService.getComments(searchText);
Service.passData(newdata);
}
})
.controller('GetController',function($scope, Service,$rootScope) {
$rootScope.$on('dataPassed', function (event,args) {
$scope.products = args;
})
})
</script>
</body>
</html>
你犯了一个很小但很有效的错误。改变你的监听器:
$rootScope.$on('dataPassed', function (newData) {
mySharedService.values = newData;
});
为此:
$rootScope.$on('dataPassed', function ($event, newData) {
mySharedService.values = newData;
});
在调度的任何 AngularJS 作用域事件中,每个侦听器的第一个参数是一个 $event 对象。
我很惊讶一个老问题,有这么多答案,却没有注意到真正的问题。
我正在尝试获取 $rootScope.$broadcast 来刷新我的视图。 服务是-
var app = angular.module("productsApp", [])
.service("serviceProvider", function ($http) {
this.getDatas = function getDatas(data) {
return $http({
method: 'POST', url: serviceUrl + '/GetProductsByCategoryOrName', headers: {
'Authorization': apiKey
},
data: data
})
}
return this
}).factory("sharedService", function ($rootScope) {
var mySharedService = {};
mySharedService.values = [];
mySharedService.passData = function (newData) {
mySharedService.values = newData;
$rootScope.$broadcast('dataPassed', newData);
}
return mySharedService;
});
通过控制器调用-
function searchProductsController($scope, $window, serviceProvider, sharedService) {
$scope.submit = function () {
var data = { "query": $scope.searchText, "categoryId": "976759", "pageIndex": 0, "sortDirection": "asc" };
serviceProvider.getDatas(data).then(function (response) {
var result = response;
sharedService.passData(result.data.data);
});
}
};
在此控制器中 sharedService.passData
,它将新数组传递给服务方法。然后它试图通过以下行广播它的变化 - $rootScope.$broadcast('dataPassed', newData)
我不知道为什么它不广播视图的更改。是否有任何其他方式来广播更改?
注- 我之前的问题 How to transfer data between controllers 对我没有任何帮助。
编辑
到目前为止,我已经改变了听众-
mySharedService.passData = function (newData) {
$rootScope.$broadcast('dataPassed', newData)
}
$rootScope.$on('dataPassed', function (newData) {
mySharedService.values = newData;
})
但是还是无法刷新视图
你应该听听你在广播什么:
$rootScope.$on('dataPassed', function(data){
console.log(data);
});
此参考可能有帮助:Why do we use $rootScope.$broadcast in AngularJS?
当您使用 $broadcast 或 $emit 时。你应该有 $scope.$on 来收听那个事件。
$scope.$on('dataPassed', function(){ //code go here });
编辑: 更新问题要求的工作代码
var app = angular.module("productsApp", [])
.service("serviceProvider", function ($http) {
this.getDatas = function getDatas(data) {
return $http({
method: 'POST', url: serviceUrl + '/GetProductsByCategoryOrName', headers: {
'Authorization': apiKey
},
data: data
});
}
return this
}).factory("sharedService", ['$rootScope', function ($rootScope) {
var mySharedService = {
values: [],
setValues: function(data){
if(data){
mySharedService.values.length = 0;
data.forEach(function(item){
mySharedService.values.push(item);
});
}
}
};
return mySharedService;
}]);
function GetController($scope, serviceProvider, sharedService, $rootScope) {
var shareData = sharedService;
$scope.products = sharedService.values;
$scope.shareData = sharedService;
var data = { "query": "grocery", "categoryId": "976759", "pageIndex": 0, "sortDirection": "asc" };
serviceProvider.getDatas(data).then(function (response) {
sharedService.setValues(response.data.data);
});
}
function searchProductsController($scope, $window, serviceProvider, sharedService, $rootScope) {
$scope.submit = function () {
var data = { "query": $scope.searchText, "categoryId": "976759", "pageIndex": 0, "sortDirection": "asc" };
serviceProvider.getDatas(data).then(function (response) {
sharedService.setValues(response.data.data);
});
}
};
你应该放一个监听器来监听广播事件。广播事件不会直接在视图 html 上直接更新您的视图数据。您必须在作用域上使用 $on
来绑定作用域上的事件。在它的回调函数里面。您将受益于获取广播数据并再次将检索数据重新分配给范围变量以获取更新的绑定。
代码
var app = angular.module("productsApp", [])
.service("serviceProvider", function($http) {
this.getDatas = function getDatas(data) {
return $http({
method: 'POST',
url: serviceUrl + '/GetProductsByCategoryOrName',
headers: {
'Authorization': apiKey
},
data: data
})
}
return this;
}).factory("sharedService", ['$rootScope', function($rootScope) {
var mySharedService = {};
mySharedService.values = [];
mySharedService.passData = function(newData) {
mySharedService.values = newData;
$rootScope.$broadcast('dataPassed', newData)
}
return mySharedService;
}]);
function GetController($scope, serviceProvider, sharedService, $rootScope) {
var data = {
"query": "grocery",
"categoryId": "976759",
"pageIndex": 0,
"sortDirection": "asc"
};
serviceProvider.getDatas(data).then(function(response) {
sharedService.passData(response.data.data);
});
//listener should register when controller loads
$scope.$on('dataPassed', function(event, newData) {
sharedService.values = newData;
$scope.products = sharedService.values;
})
}
function searchProductsController($scope, $window, serviceProvider, sharedService, $rootScope) {
$scope.submit = function() {
var data = {
"query": $scope.searchText,
"categoryId": "976759",
"pageIndex": 0,
"sortDirection": "asc"
};
serviceProvider.getDatas(data).then(function(response) {
var result = response;
sharedService.passData(result.data.data);
});
}
//listener should register when controller loads
$scope.$on('dataPassed', function(event, newData) {
console.log(newData);
sharedService.values = newData;
})
};
@Manoz 至于你之前的回答,我已经给你答案了。我也为此更新了 plunker。至于使用 $rootscope.
,你有 2 个参数,其中一个是事件,下一个是你正在广播的数据。我在两个答案中都嘲笑了您的 api 电话,以使您更加理解。
这里是 plunker 使用 $rootscope
:http://plnkr.co/edit/MBzDMRll5Z4CjusY5QLN?p=preview
<html>
<head>
<title>Angular JS Controller</title>
<script src = "http://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>
</head>
<body>
<h2>AngularJS Sample Application</h2>
<div ng-app = "app" >
<div ng-controller="searchProductsController">
<input ng-model="searchText"/>
<button ng-click="setPlace(searchText)">Enter Search id</button>
</div>
<div ng-controller="GetController">
<div ng-repeat="product in products">
<h3>{{product.name}}</h3>
</div>
</div>
</div>
<script>
var app = angular.module('app', []);
app.run(['$rootScope', function($rootScope){
$rootScope.test = 123;
}]);
app.factory("Service", function ($rootScope) {
function passData(newData) {
alert('i am here');
$rootScope.$broadcast('dataPassed', newData);
}
return {
passData: passData
}
}).factory("dataService",function($http){//mock for getting values from api
return{
getComments:function (roomid){
if(roomid==1){
var data = [{"name":"alex","place":"kathmandu"},{"name":"god","place":"seattle"}];
return data;
}
if(roomid==2)
{
var newdata = [{"name":"newname","place":"kathmandu"},{"name":"newname2","place":"seattle"}];
return newdata;
}
}
}
});
app.controller('searchProductsController',function($scope, Service,$http,dataService) {
$scope.setPlace = function (searchText) {
var newdata = dataService.getComments(searchText);
Service.passData(newdata);
}
})
.controller('GetController',function($scope, Service,$rootScope) {
$rootScope.$on('dataPassed', function (event,args) {
$scope.products = args;
})
})
</script>
</body>
</html>
你犯了一个很小但很有效的错误。改变你的监听器:
$rootScope.$on('dataPassed', function (newData) {
mySharedService.values = newData;
});
为此:
$rootScope.$on('dataPassed', function ($event, newData) {
mySharedService.values = newData;
});
在调度的任何 AngularJS 作用域事件中,每个侦听器的第一个参数是一个 $event 对象。
我很惊讶一个老问题,有这么多答案,却没有注意到真正的问题。