我创建了自定义指令,例如下拉菜单,但在我的情况下,项目在模态弹出窗口中打开,选择项目将在div中选择。
现在我添加了两个指令(即两个相同指令的实例),并使用这两个指令作为父子方式。我从rest api获取项目然后分配给第一个指令(即父)并根据第一个指令的选择我过滤另一个api然后分配给第二个指令(即孩子)哪个工作得很好。但是,每当更改第一个指令的选择时,我想重置第二个指令的值(选定项)。
我将以下代码添加到我的指令中,但它没有帮助我
controller: ['$scope', '$rootScope',
function($scope, $rootScope) {
$scope.$watch('value', function(val) {
$rootScope.$broadcast('valueChanged', $scope.id);
});
$scope.psChanged = function() {
$scope.$on('valueChanged', function(event, value) {
if (value === $scope.id) {
//Do nothing.
} else {
console.log("Text change");
}
});
}
}
]
My full working plunker
http://plnkr.co/edit/f6LYS2aGrTXGkZ3vrIDD?p=preview
有人可以帮助我完成它!
答案 0 :(得分:2)
我在隔离范围中添加了一个名为isChild的属性,当它真实地监听事件valueChanged时。所以我在没有函数psChanged的情况下绑定控制器中的侦听器,并且它可以工作。
angular.module('plexusSelect', []).directive('plexusSelect', ['$ionicModal', '$timeout', '$ionicScrollDelegate', '$rootScope',
function($ionicModal, $timeout, $ionicScrollDelegate, $rootScope) {
// Runs during compile
return {
scope: {
'items': '=',
'id': '@',
'text': '@',
'textIcon': '@',
'headerText': '@',
'textField': '=',
'valueField': '@',
'callback': '&',
'isChild' : '@'
},
require: 'ngModel',
restrict: 'E',
templateUrl: 'plexusSelect.html',
controller: ['$scope', '$rootScope',
function($scope, $rootScope) {
$scope.$watch('value', function(val) {
$rootScope.$broadcast('valueChanged', $scope.id);
});
if ($scope.isChild === 'true') {
//$scope.psChanged = function() {
$scope.$on('valueChanged', function(event, value) {
if ($scope.id === value) {
//Do nothing.
} else {
$scope.clearSearch();
$scope.value = '';
$scope.text = $scope.defaultText;
console.log("Text change");
}
});
}
}
],
HTML
<ion-view view-title="Search" ng-controller='SearchCtrl'>
<ion-content>
<h1>Search</h1>
<plexus-select id="psDeparture" is-child='false' items="deptStations" header-text="Select Departure Station" text="Select departure..." text-icon="icon-takeoff" text-field="['City_Name_EN','City_Code']" value-field="City_Code" ng-model="deptStation.value"></plexus-select>
<plexus-select id="psArrival" is-child='true' items="arrStations" header-text="Select Arrival Station" text="Select arrival..." text-icon="icon-landing" text-field="['Destination.City_Name_EN','Destination.City_Code']" value-field="Destination.City_Code" ng-model="arrStation.value"></plexus-select>
</ion-content>
</ion-view>