我在页面初始化时尝试调用passID()
函数,但该功能仍无法正常工作。
网站以这种方式运作: Page-A 将数据传递给 Controller-A 然后到服务然后到 Controller-B 然后来自Controller-B的函数被 Page-B 调用。
我的猜测是我的错误出现在Page-B中,因为我已成功将Page-A的数据传递给Controller-B,但我并非100%肯定。
在我的 Page-A 中,我使用ng-Click
制作了一个按钮,用于调用 Controller-A 的功能 <a href="#/compare-details"><button class="viewDetails" ng-click="passID([1,03,07])">test button</button></a>
Controller-A 仅从Page-A
获取数据angular.module('handsetExplorerModule')
.controller("compareHandsetController", ['$scope','compareHandsetService','sharedData', function($scope, compareHandsetService, sharedData) {
$scope.passID = function(id){
var arrayID = [];
arrayID = id;
sharedData.set(arrayID);
};
}]);
服务获取我的JSON并且是我的getter和setter
angular.module('handsetExplorerModule')
.factory('compareDetailsService', ['$http','$q', function($http, $q) {
return {
getHandsetList: function(){
return $http.get("./data/compareJSON.json");
}
};
}]);
angular.module('handsetExplorerModule')
.factory('sharedData', function() {
var savedData = {}
function set(data) {
savedData = data;
}
function get() {
return savedData;
}
return {
set: set,
get: get
}
});
Controller-B 过滤JSON文件只能获得我需要的东西(我使用了来自Page-A的ID来过滤)
angular.module('handsetExplorerModule')
.controller("compareDetailsController", ['$scope','compareDetailsService','sharedData', function($scope, compareDetailsService, sharedData) {
$scope.data = {phones: []};
compareDetailsService.getHandsetList()
.then(
function(data){
$scope.data.phones = data.data;
},
function(error){
//todo: handle error
}
);
var getData = sharedData.get();
$scope.passID = function passID(){
var newData = [];
for(var i=0; i<$scope.data.phones.length; i++){
if($scope.data.phones[i].id == getData[0] || $scope.data.phones[i].id == getData[01] || $scope.data.phones[i].id == getData[02]){
newData.push($scope.data.phones[i]);
}
}
$scope.phoneContent = newData;
}
$scope.viewDetails = function(id){
alert(id);
}
}]);
最后,在我的 Page-B 中,我称之为Controller-B功能:<div ng-init="passID()">
由我的 Page-B :
的ng-repeat使用<table id="Content" ng-repeat="x in phoneContent track by x.id">
<tr>
<td class="one">
<table>
<tr>
<td><img class="contImage" ng-src="{{x.image}}" ng-alt="{{x.name}}" /></td>
<td class="textAlign">{{x.name}} <button class="viewDetails" ng-click="viewDetails(x.id)">VIEW DETAILS</button></td>
</table>
</td>
<td class="two">{{x.size}}</td>
<td class="one">{{x.storage}}</td>
<td class="two">{{x.camera}}</td>
<td class="one">{{x.battery}}</td>
<td class="two">{{x.network}}</td>
<td class="one">{{x.sim}}</td>
</tr>
</table>
答案 0 :(得分:-1)
我不知道你为什么定义arrayID
。
要解决您的问题,请尝试使用sharedData.set = arrayID;
代替sharedData.set(arrayID);
。
希望它有所帮助!