ディレクティブがあります。これがコードです。
.directive('map', function() {
return {
restrict: 'E',
replace: true,
template: '<div></div>',
link: function($scope, element, attrs) {
var center = new google.maps.LatLng(50.1, 14.4);
$scope.map_options = {
zoom: 14,
center: center,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
// create map
var map = new google.maps.Map(document.getElementById(attrs.id), $scope.map_options);
var dirService= new google.maps.DirectionsService();
var dirRenderer= new google.maps.DirectionsRenderer()
var showDirections = function(dirResult, dirStatus) {
if (dirStatus != google.maps.DirectionsStatus.OK) {
alert('Directions failed: ' + dirStatus);
return;
}
// Show directions
dirRenderer.setMap(map);
//$scope.dirRenderer.setPanel(Demo.dirContainer);
dirRenderer.setDirections(dirResult);
};
// Watch
var updateMap = function(){
dirService.route($scope.dirRequest, showDirections);
};
$scope.$watch('dirRequest.Origin', updateMap);
google.maps.event.addListener(map, 'zoom_changed', function() {
$scope.map_options.zoom = map.getZoom();
});
dirService.route($scope.dirRequest, showDirections);
}
}
})
ユーザーアクションでupdateMap()
を呼び出したいです。アクションボタンはディレクティブ上にありません。
コントローラからupdateMap()
を呼び出すための最良の方法は何ですか?
分離スコープを使用したい場合は、コントローラスコープからの変数の双方向バインディング=
を使用してコントロールオブジェクトを渡すことができます。同じ制御オブジェクトを使用して、ページ上の同じディレクティブの複数のインスタンスを制御することもできます。
angular.module('directiveControlDemo', [])
.controller('MainCtrl', function($scope) {
$scope.focusinControl = {};
})
.directive('focusin', function factory() {
return {
restrict: 'E',
replace: true,
template: '<div>A:{{internalControl}}</div>',
scope: {
control: '='
},
link: function(scope, element, attrs) {
scope.internalControl = scope.control || {};
scope.internalControl.takenTablets = 0;
scope.internalControl.takeTablet = function() {
scope.internalControl.takenTablets += 1;
}
}
};
});
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div ng-app="directiveControlDemo">
<div ng-controller="MainCtrl">
<button ng-click="focusinControl.takeTablet()">Call directive function</button>
<p>
<b>In controller scope:</b>
{{focusinControl}}
</p>
<p>
<b>In directive scope:</b>
<focusin control="focusinControl"></focusin>
</p>
<p>
<b>Without control object:</b>
<focusin></focusin>
</p>
</div>
</div>
アクションボタンがディレクティブと同じコントローラ$scope
を使用していると仮定して、link関数内の$scope
に関数updateMap
を定義するだけです。アクションボタンがクリックされると、コントローラはその機能を呼び出すことができます。
<div ng-controller="MyCtrl">
<map></map>
<button ng-click="updateMap()">call updateMap()</button>
</div>
app.directive('map', function() {
return {
restrict: 'E',
replace: true,
template: '<div></div>',
link: function($scope, element, attrs) {
$scope.updateMap = function() {
alert('inside updateMap()');
}
}
}
});
@ FlorianFのコメントによれば、ディレクティブが独立したスコープを使用する場合、事態はより複雑になります。これを機能させる1つの方法があります。ディレクティブ関数をコントローラーに登録するmap
ディレクティブにset-fn
属性を追加します。
<map set-fn="setDirectiveFn(theDirFn)"></map>
<button ng-click="directiveFn()">call directive function</button>
scope: { setFn: '&' },
link: function(scope, element, attrs) {
scope.updateMap = function() {
alert('inside updateMap()');
}
scope.setFn({theDirFn: scope.updateMap});
}
function MyCtrl($scope) {
$scope.setDirectiveFn = function(directiveFn) {
$scope.directiveFn = directiveFn;
};
}
通信を容易にするためにディレクティブの隔離されたスコープでオブジェクトを公開するのは魅力的かもしれませんが、特にこの通信を2つのレベル(コントローラ、ディレクティブ、ネストしたディレクティブなどに)
最初はこの道をたどりましたが、いくつかのさらなる調査の結果、ディレクティブがサービスを介した通信に使用するイベントとプロパティを公開するためのより保守可能で読みやすいコードが作成されました。コミュニケーションのためにそれらの変更に反応する必要がある指令またはその他のコントロール。
この抽象化はAngularJSの依存性注入フレームワークと非常にうまく機能します。これらのイベントに反応する必要がある項目にサービスを注入できるからです。 Angular.jsファイルを見ると、そこに含まれるディレクティブもこのようにサービスと$ watchを使用していることがわかります。それらは、分離されたスコープ上のイベントを公開していません。
最後に、互いに依存しているディレクティブ間で通信する必要がある場合は、通信手段としてそれらのディレクティブ間でコントローラーを共有することをお勧めします。
AngularJSのベストプラクティスWiki にも言及しています。
アトミックイベントには、。$ broadcast()、。$ emit()、および。$ on()のみを使用します。アプリ全体でグローバルに関連するイベント(ユーザー認証やアプリの終了など)。モジュール、サービス、またはウィジェットに固有のイベントが必要な場合は、サービス、ディレクティブコントローラ、またはサードパーティライブラリを検討する必要があります。
- $ scope。$ watch()はイベントの必要性を置き換えるべきです
- サービスを注入し、メソッドを直接呼び出すことも直接通信に役立ちます
- 指令は指令コントローラを介して互いに直接通信することができます。
Oliverの答えに基づいて - 必ずしもディレクティブの内部メソッドにアクセスする必要はないかもしれません。そのような場合は、エラーをスローしないようにするために、空白のオブジェクトを作成してcontrol
attrを追加する必要はないでしょう。 (cannot set property 'takeTablet' of undefined
).
ディレクティブ内の他の場所でこのメソッドを使用することもできます。
scope.control
が存在することを確認するためのチェックを追加し、モジュールのパターンを明らかにするのと同じようにメソッドを設定します。
app.directive('focusin', function factory() {
return {
restrict: 'E',
replace: true,
template: '<div>A:{{control}}</div>',
scope: {
control: '='
},
link : function (scope, element, attrs) {
var takenTablets = 0;
var takeTablet = function() {
takenTablets += 1;
}
if (scope.control) {
scope.control = {
takeTablet: takeTablet
};
}
}
};
});
正直なところ、私はこのスレッドの答えのどれにも本当に納得できませんでした。だから、これが私の解決策です:
このメソッドは、ディレクティブの$scope
が共有のものであるか独立したものであるかには関係ありません。
ディレクティブインスタンスを登録するためのfactory
angular.module('myModule').factory('MyDirectiveHandler', function() {
var instance_map = {};
var service = {
registerDirective: registerDirective,
getDirective: getDirective,
deregisterDirective: deregisterDirective
};
return service;
function registerDirective(name, ctrl) {
instance_map[name] = ctrl;
}
function getDirective(name) {
return instance_map[name];
}
function deregisterDirective(name) {
instance_map[name] = null;
}
});
ディレクティブコードは、通常、DOMを処理しないすべてのロジックをディレクティブコントローラの内部に置きます。そして私たちのハンドラの中にコントローラインスタンスを登録する
angular.module('myModule').directive('myDirective', function(MyDirectiveHandler) {
var directive = {
link: link,
controller: controller
};
return directive;
function link() {
//link fn code
}
function controller($scope, $attrs) {
var name = $attrs.name;
this.updateMap = function() {
//some code
};
MyDirectiveHandler.registerDirective(name, this);
$scope.$on('destroy', function() {
MyDirectiveHandler.deregisterDirective(name);
});
}
})
テンプレートコード
<div my-directive name="foo"></div>
factory
を使用してコントローラインスタンスにアクセスし、公開されているメソッドを実行します。
angular.module('myModule').controller('MyController', function(MyDirectiveHandler, $scope) {
$scope.someFn = function() {
MyDirectiveHandler.get('foo').updateMap();
};
});
彼らがどのように対処するかについてのAngularの本からの葉の取り出し
<form name="my_form"></form>
$ parse を使用して$parent
スコープでコントローラを登録しています。この手法は孤立した$scope
ディレクティブでは機能しません。
angular.module('myModule').directive('myDirective', function($parse) {
var directive = {
link: link,
controller: controller,
scope: true
};
return directive;
function link() {
//link fn code
}
function controller($scope, $attrs) {
$parse($attrs.name).assign($scope.$parent, this);
this.updateMap = function() {
//some code
};
}
})
$scope.foo
を使用してコントローラ内部でそれにアクセスします
angular.module('myModule').controller('MyController', function($scope) {
$scope.someFn = function() {
$scope.foo.updateMap();
};
});
少し遅れていますが、これは分離されたスコープとディレクティブで関数を呼び出すための「イベント」を使用した解決策です。このソリューションは this SO post by satchmorun に触発され、モジュールとAPIを追加します。
//Create module
var MapModule = angular.module('MapModule', []);
//Load dependency dynamically
angular.module('app').requires.Push('MapModule');
ディレクティブと通信するためのAPIを作成します。 addUpdateEventはイベントをイベント配列に追加し、updateMapはすべてのイベント関数を呼び出します。
MapModule.factory('MapApi', function () {
return {
events: [],
addUpdateEvent: function (func) {
this.events.Push(func);
},
updateMap: function () {
this.events.forEach(function (func) {
func.call();
});
}
}
});
(イベントを削除する機能を追加する必要があるかもしれません。)
ディレクティブでMapAPIへの参照を設定し、MapApi.updateMapが呼び出されたときにイベントとして$ scope.updateMapを追加します。
app.directive('map', function () {
return {
restrict: 'E',
scope: {},
templateUrl: '....',
controller: function ($scope, $http, $attrs, MapApi) {
$scope.api = MapApi;
$scope.updateMap = function () {
//Update the map
};
//Add event
$scope.api.addUpdateEvent($scope.updateMap);
}
}
});
「メイン」コントローラでMapApiへの参照を追加し、MapApi.updateMap()を呼び出してマップを更新します。
app.controller('mainController', function ($scope, MapApi) {
$scope.updateMapButtonClick = function() {
MapApi.updateMap();
};
}
ディレクティブが親スコープで関数を定義できるようにするために使用できるDOM属性を指定できます。その後、親スコープは他のメソッドと同様にこのメソッドを呼び出すことができます。 これは - plunkerです。そして以下は関連するコードです。
clearfn
はdirective要素の属性で、親スコープはscopeプロパティを渡すことができます。このスコーププロパティは、ディレクティブが目的の動作を実現する関数に設定できます。
<!DOCTYPE html>
<html ng-app="myapp">
<head>
<script data-require="angular.js@*" data-semver="1.3.0-beta.5" src="https://code.angularjs.org/1.3.0-beta.5/angular.js"></script>
<link rel="stylesheet" href="style.css" />
<style>
my-box{
display:block;
border:solid 1px #aaa;
min-width:50px;
min-height:50px;
padding:.5em;
margin:1em;
outline:0px;
box-shadow:inset 0px 0px .4em #aaa;
}
</style>
</head>
<body ng-controller="mycontroller">
<h1>Call method on directive</h1>
<button ng-click="clear()">Clear</button>
<my-box clearfn="clear" contentEditable=true></my-box>
<script>
var app = angular.module('myapp', []);
app.controller('mycontroller', function($scope){
});
app.directive('myBox', function(){
return {
restrict: 'E',
scope: {
clearFn: '=clearfn'
},
template: '',
link: function(scope, element, attrs){
element.html('Hello World!');
scope.clearFn = function(){
element.html('');
};
}
}
});
</script>
</body>
</html>
スコープ関数を使用して、呼び出された関数をディレクティブ関数に関連付けます。
angular.module('myApp', [])
.controller('MyCtrl',['$scope',function($scope) {
}])
.directive('mydirective',function(){
function link(scope, el, attr){
//use scope.$parent to associate the function called to directive function
scope.$parent.myfunction = function directivefunction(parameter){
//do something
}
}
return {
link: link,
restrict: 'E'
};
});
hTMLで
<div ng-controller="MyCtrl">
<mydirective></mydirective>
<button ng-click="myfunction(parameter)">call()</button>
</div>
メソッド名をディレクティブに指定して、コントローラから呼び出すものを定義できますが、独立スコープはありません。
angular.module("app", [])
.directive("palyer", [
function() {
return {
restrict: "A",
template:'<div class="player"><span ng-bind="text"></span></div>',
link: function($scope, element, attr) {
if (attr.toPlay) {
$scope[attr.toPlay] = function(name) {
$scope.text = name + " playing...";
}
}
}
};
}
])
.controller("playerController", ["$scope",
function($scope) {
$scope.clickPlay = function() {
$scope.play('AR Song');
};
}
]);
.player{
border:1px solid;
padding: 10px;
}
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div ng-app="app">
<div ng-controller="playerController">
<p>Click play button to play
<p>
<p palyer="" to-play="play"></p>
<button ng-click="clickPlay()">Play</button>
</div>
</div>
_テスト済み_ これが誰かに役立つことを願っています。
私の簡単な方法(タグを元のコードと考えてください)
<html>
<div ng-click="myfuncion">
<my-dir callfunction="myfunction">
</html>
<directive "my-dir">
callfunction:"=callfunction"
link : function(scope,element,attr) {
scope.callfunction = function() {
/// your code
}
}
</directive>
これは最善の選択ではないかもしれませんが、あなたのディレクティブのスコープやコントローラにアクセスするためにangular.element("#element").isolateScope()
または$("#element").isolateScope()
を実行することができます。
以下の解決法は、 'controller As'形式のコントローラー(親とディレクティブ(分離)の両方)を持っている場合に役立ちます。
誰かがこれが役に立つと思うかもしれません、
ディレクティブ
var directive = {
link: link,
restrict: 'E',
replace: true,
scope: {
clearFilters: '='
},
templateUrl: "/temp.html",
bindToController: true,
controller: ProjectCustomAttributesController,
controllerAs: 'vmd'
};
return directive;
function link(scope, element, attrs) {
scope.vmd.clearFilters = scope.vmd.SetFitlersToDefaultValue;
}
}
指令コントローラ:
function DirectiveController($location, dbConnection, uiUtility) {
vmd.SetFitlersToDefaultValue = SetFitlersToDefaultValue;
function SetFitlersToDefaultValue() {
//your logic
}
}
hTMLコード:
<Test-directive clear-filters="vm.ClearFilters"></Test-directive>
<a class="pull-right" style="cursor: pointer" ng-click="vm.ClearFilters()"><u>Clear</u></a>
//this button is from parent controller which will call directive controller function
ページコントローラでディレクティブのコントローラを取得する方法:
dOM要素からディレクティブコントローラへの参照を取得するためのカスタムディレクティブを書く:
angular.module('myApp')
.directive('controller', controller);
controller.$inject = ['$parse'];
function controller($parse) {
var directive = {
restrict: 'A',
link: linkFunction
};
return directive;
function linkFunction(scope, el, attrs) {
var directiveName = attrs.$normalize(el.prop("tagName").toLowerCase());
var directiveController = el.controller(directiveName);
var model = $parse(attrs.controller);
model.assign(scope, directiveController);
}
}
ページコントローラのHTMLでそれを使用します。
<my-directive controller="vm.myDirectiveController"></my-directive>
ページコントローラでディレクティブコントローラを使用します。
vm.myDirectiveController.callSomeMethod();
注意:与えられた解決策は要素ディレクティブのコントローラに対してのみ機能します(タグ名は必要なディレクティブの名前を取得するために使用されます)。