我已经尝试搜索anwser ...我被卡住了。
我尝试在控制器之间进行通信(http://onehungrymind.com/angularjs-communicating-between-controllers/)。
这对我来说很好。
在下一步中,我尝试添加一个 ajax 请求,该结果应发送到控制器。
该请求正在完成他的工作,但不幸的是,仅在第二个请求上。
AJAX 请求
var request = $.post("http://www.mydomain.com/search.php", { data: "" });
request.done(function( data ) {
sharedService.prepForBroadcast(data);
});
};
这有什么问题?
JAVASCRIPT
var myModule = angular.module('myModule', []);
myModule.factory('mySharedService', function($rootScope) {
var sharedService = {};
sharedService.message = '';
sharedService.prepForBroadcast = function(msg) {
this.message = msg;
this.broadcastItem();
};
sharedService.broadcastItem = function() {
$rootScope.$broadcast('handleBroadcast');
};
return sharedService;
});
function Controller($scope, sharedService) {
$scope.handleClick = function() {
var request = $.post("http://www.mydomain.com/search.php", { data: "" });
request.done(function( data ) {
sharedService.prepForBroadcast(data);
});
};
$scope.$on('handleBroadcast', function() {
$scope.message = 'zero: ' + sharedService.message;
});
}
function ControllerOne($scope, sharedService) {
$scope.$on('handleBroadcast', function() {
$scope.message = 'ONE: ' + sharedService.message;
});
}
function ControllerTwo($scope, sharedService) {
$scope.$on('handleBroadcast', function() {
$scope.message = 'TWO: ' + sharedService.message;
});
}
Controller.$inject = ['$scope', 'mySharedService'];
ControllerOne.$inject = ['$scope', 'mySharedService'];
ControllerTwo.$inject = ['$scope', 'mySharedService'];
HTML
<script type='text/javascript' src="http://code.angularjs.org/angular-1.0.0rc9.js"></script>
<script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js'></script>
<body ng-app="myModule">
<div ng-controller="Controller">
<button ng-click="handleClick();">read json</button>
</div>
<div ng-controller="ControllerOne">
<input ng-model="message" >
</div>
<div ng-controller="ControllerTwo">
<input ng-model="message" >
</div>
谢谢你。