加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

如何在angularjs中写一个指令

发布时间:2020-12-17 07:33:24 所属栏目:安全 来源:网络整理
导读:我喜欢使用指令来制作一个自定义组件.我检查了很多教程,它让我感到困惑,任何人都可以解释一个指令的工作原理.我打算制作的组件是 shout-list/shout-list 喊叫列表的模板将是这样的 div class="shout" ng-repeat="shout in shouts" p{{shout.message}}/p img
我喜欢使用指令来制作一个自定义组件.我检查了很多教程,它让我感到困惑,任何人都可以解释一个指令的工作原理.我打算制作的组件是
<shout-list></shout-list>

喊叫列表的模板将是这样的

<div class="shout" ng-repeat="shout in shouts">
    <p>{{shout.message}}</p>
    <img src="media/images/delete.png" width="32" height="32" ng-click="deleteShout({{$index}},'{{shout._id}}')"/>
</div>
这是您的指令,有一些内联评论:
angular.module( 'directives',[] ).directive( 'shoutList',function () {
  return {
    restrict: 'E',// allow as an element; the default is only an attribute
    scope: {       // create an isolate scope
      shouts: '='  // map the var in the shouts attribute to this scope
    },templateUrl: 'templates/shoutList.html',// load the template file
    controller: function ( $scope ) {
      // we declare a your function for use in the view
      $scope.deleteShout = function ( idx,id ) {
        // do whatever
      };
    }
  };
});

和模板文件:

<div class="shout" ng-repeat="shout in shouts">
  <p>{{shout.message}}</p>
  <img src="media/images/delete.png" width="32" height="32" 
    ng-click="deleteShout({{$index}},'{{shout._id}}')" />
</div>

现在你可以在你的代码中使用它,就像这样:

控制器:

.controller( 'MainCtrl',function ( $scope ) {
  $scope.myShouts = // ...
});

视图:

<shout-list shouts="myShouts"></shout-list>

希望这可以帮助!

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读