30

我一直在尝试定义指令,以便可以在表单中显示不同的“小部件”,具体取决于存储在数据库中的字段类型及其参数。我需要对不同类型的场景做出反应,因此需要指令来处理布局。

在玩一些示例时,我想出了一个 *kinda* 工作的代码:

HTML

<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();
            }
        }
    }
});

这似乎有效(尽管明显比 *proper* angularJS 变量绑定慢),但我认为必须有更好的方法来做到这一点。任何人都可以对此事有所了解吗?

4

3 回答 3

27

我不知道您为什么要$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/

于 2012-11-08T20:30:48.193 回答
11

你的意思是这样的?

我基本上使用@Flek 的例子。
唯一的区别是ng-model='title'

进行双向绑定的技巧是 ng-model,它在文档中声明:

ngModel 是告诉 Angular 进行双向数据绑定的指令。 它与输入、选择、文本区域一起工作。您也可以轻松编写自己的指令来使用 ngModel。

<input type="text" ng-model="title" style="width: 90%"/>
于 2012-11-09T01:52:26.477 回答
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;
        }

请注意指令(以参数作为键的对象)、模板(指令中参数对象的“未包装”键)和控制器定义的函数参数的差异。

于 2015-08-17T20:00:56.750 回答