Isolate スコープを使用してディレクティブにデフォルト値を設定しようとしています。基本的に、ディレクティブがバインドされているときに、スコープ オブジェクトを使用していくつかの DOM 操作を行う必要があります。以下は私のコードです:
コントローラ:
angular.module('ctrl').controller('TempCtrl', function($scope, $location, $window, $timeout, RestService, CommonSerivce) {
$scope.showAppEditWindow = function() {
//Binding the directive isolate scope objects with parent scope objects
$scope.asAppObj = $scope.appObj;
$scope.asAppSubs = $scope.appSubscriptions;
//Making Initial Settings
CommonSerivce.broadcastFunction('doDirectiveBroadcast', "");
};
サービス:
angular.module('Services').factory('CommonSerivce', function ($rootScope) {
return {
broadcastFunction: function(listener, args) {
$rootScope.$broadcast(listener, args);
}
};
指令:
angular.module('directives').directive('tempDirective', function() {
return {
restrict : 'E',
scope:{
appObj:'=asAppObj',
appSubs: '=asAppSubs'
},
link : function(scope, element, attrs) {},
controller : function ($scope,Services,CommonSerivce) {
//Broadcast Listener
$scope.$on('doDirectiveBroadcast', function (event, args) {
$scope.setDefaults();
});
$scope.setDefaults = function() {
//Setting Default Value
alert(JSON.stringify($scope.appSubs)); //Coming as undefined
};
},
templateUrl:"../template.html"
};
});
カスタム ディレクティブ要素:
<temp-directive as-app-obj="asAppObj" as-app-subs="asAppSubs" />
ここでの問題は、ディレクティブ内のデフォルト メソッドで Isolate スコープにアクセスしようとしているときに、データが来て DOM にバインドされているのに、未定義の値を取得していることです。ブロードキャスト リスナーで Isolate スコープにアクセスし、ディレクティブ テンプレート HTML を変更するにはどうすればよいですか? これを処理するための別のワシはありますか?