AngularJs指令:从模板中的父作用域调用方法

时间:2014-07-01 15:04:52

标签: javascript angularjs templates scope directive

我对Angular指令很陌生,而且我很难让它做我想做的事情。这是我所拥有的基础知识:

控制器:

controller('profileCtrl', function($scope) {
  $scope.editing = {
    'section1': false,
    'section2': false
  }
  $scope.updateProfile = function() {};
  $scope.cancelProfile = function() {};
});

指令:

directive('editButton', function() {
  return {
    restrict: 'E',
    templateUrl: 'editbutton.tpl.html',
    scope: {
      editModel: '=ngEdit'
    }
  };
});

模板(editbutton.tpl.html):

<button
  ng-show="!editModel"
  ng-click="editModel=true"></button>
<button
  ng-show="editModel"
  ng-click="updateProfile(); editModel=false"></button>
<button
  ng-show="editModel"
  ng-click="cancelProfile(); editModel=false"></button>

HTML:

<edit-button ng-edit="editing.section1"></edit-button>

如果不清楚,我希望<edit-button>标记包含三个不同的按钮,每个按钮与传递到ng-edit的任何范围属性进行交互。单击时,它们应该更改该属性,然后调用适当的范围方法。

现在的方式,正确点击按钮会更改$scope.editing的值,但updateProfilecancelProfile方法不起作用。我可能会偏离如何正确使用指令,但我在网上找到一个例子来帮助我完成我想要做的事情。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:16)

一种方法是使用$parent调用函数。

<button ng-show="editModel" ng-click="$parent.cancelProfile(); editModel=false">b3</button>

Demo

另一种方式(可能更好的方法)是配置指令的隔离范围以包含对这些控制器函数的引用:

app.directive('editButton', function() {
  return {
    restrict: 'E',
    templateUrl: 'editbutton.tpl.html',
    scope: {
      editModel: '=ngEdit',
      updateProfile: '&',
      cancelProfile: '&'
    }
  };
});

然后通过HTML传递函数:

<edit-button ng-edit="editing.section1" update-profile='updateProfile()' cancel-profile='cancelProfile()'></edit-button>

Demo