データベースに保存されているフィールドのタイプとそのパラメータに応じて、フォームに異なる「ウィジェット」を表示できるように、ディレクティブを定義しようとしています。さまざまな種類のシナリオに対応する必要があるため、レイアウトを処理するディレクティブが必要です。
いくつかの例を試しながら、* kin **が機能するコードを思い付きました。
<input type="text" ng-model="myModel" style="width: 90%"/>
<div class="zippy" zippy-title="myModel"></div>
myApp.directive('zippy', function(){
return {
restrict: 'C',
// This HTML will replace the zippy directive.
transclude: true,
scope: { title:'=zippyTitle' },
template: '<input type="text" value="{{title}}"style="width: 90%"/>',
// The linking function will add behavior to the template
link: function(scope, element, attrs) {
// Title element
element.bind('blur keyup change', function() {
scope.$apply(read);
});
var input = element.children();
function read() {
scope.title = input.val();
}
}
}
});
これは機能しているように見えますが(*適切な* angularJS変数のバインディングよりも明らかに遅いですが)、これを行うにはもっと良い方法があるはずです。誰でもこの問題に光を当てることができますか?
$apply
メソッドを実際にトリガーする理由は、実際には必要ないのでわかりません。
Angularページから使用した例を編集し、入力を含めました。それは私のために動作します: http://jsfiddle.net/6HcGS/2/
[〜#〜] html [〜#〜]
<div ng-app="zippyModule">
<div ng-controller="Ctrl3">
Title: <input ng-model="title">
<hr>
<div class="zippy" zippy-title="title"></div>
</div>
</div>
[〜#〜] js [〜#〜]
function Ctrl3($scope) {
$scope.title = 'Lorem Ipsum';
}
angular.module('zippyModule', [])
.directive('zippy', function(){
return {
restrict: 'C',
replace: true,
transclude: true,
scope: { title:'=zippyTitle' },
template: '<input type="text" value="{{title}}"style="width: 90%"/>',
link: function(scope, element, attrs) {
// Your controller
}
}
});
[〜#〜] update [〜#〜]maxisamは正しい。変数を値にバインドする代わりにng-model
を使用する必要があるそのようです:
<input type="text" ng-model="title" style="width: 90%"/>
作業バージョンは次のとおりです: http://jsfiddle.net/6HcGS/3/
ディレクティブのコールバックパラメーターに渡す方法を次に示します。コントローラーテンプレート:
<component-paging-select-directive
page-item-limit="{{pageItemLimit}}"
page-change-handler="pageChangeHandler(paramPulledOutOffThinAir)"
></component-paging-select-directive>
ディレクティブ:
angular.module('component')
.directive('componentPagingSelectDirective', [
function( ) {
return {
restrict: 'E',
scope: {
// using the '=' for two way doesn't work
pageItemLimit: '@', // the '@' is one way from controller
pageChangeHandler: '&'
},
controller: function($scope) {
// pass value from this scope to controller method.
// controller method will update the var in controller scope
$scope.pageChangeHandler({
paramPulledOutOffThinAir: $scope.pageItemLimit
})
}, ...
コントローラー内:
angular.module('...').controller(...
$scope.pageItemLimit = 0; // initial value for controller scoped var
// complete the data update by setting the var in controller scope
// to the one from the directive
$scope.pageChangeHandler = function(paramPulledOutOffThinAir) {
$scope.pageItemLimit = paramPulledOutOffThinAir;
}
ディレクティブ(キーとしてパラメーターを持つオブジェクト)、テンプレート(ディレクティブのパラメーターオブジェクトからの「ラップされていない」キー)、およびコントローラー定義の関数パラメーターの違いに注意してください。