欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

AngularJs中 ng-repeat指令中实现含有自定义指令的动态html的方法

程序员文章站 2023-10-31 19:51:40
今天用angular写table的时候,遇到了一个问题。在ng-repeat中,含有动态的html,而这些html中含有自定义指令。 因为希望实现一个能够复用的table...

今天用angular写table的时候,遇到了一个问题。在ng-repeat中,含有动态的html,而这些html中含有自定义指令。

因为希望实现一个能够复用的table,所以定义了一个指令mystandtable,指令代码大概如下:

var mycommon = angular.module("mycommon",[]);
mycommon.directive("mystandtable", function () {
 return {
 restrict: "a",
 templateurl: "app/template/tabletem.html",
 transclude: false,
 replace: true,
 controller: function ($scope,$compile, commonservice) {
  // do something... 
 },
 link: function (scope, element, attris) {
 }
 }
});

tabletem.html文件代码如下:

<div>
 <table class="table table-hover table-bordered">
 <thead>
  <tr>
  <th ng-if="tabledata.multiselect">
   <input type="checkbox" id="check-all" ng-model="itemschecked">
   <label for="check-all" class="fa" ng-class="{'fa-square-o': !itemschecked, 'fa-check-square-o': itemschecked }" aria-hidden="true">
   </label>
  </th>
  <th ng-repeat="item in tabledata.thead">{{item}}</th>
  </tr>
 </thead>
 <tbody>
  <tr ng-repeat="item in tabledata.items" ng-click="selectitem(item)" ng-init="item.selected = false" ng-class="{'selected': item.selected}">
  <td ng-if="tabledata.multiselect">
   <input type="checkbox" id="check_{{$index}}" ng-model="item.selected">
   <label for="check_{{$index}}" class="fa" ng-class="{'fa-square-o': !item.selected, 'fa-check-square-o': item.selected }" aria-hidden="true">
   </label>
  </td>
  <td ng-repeat="name in tabledata.theadname">
   {{item[name]}}
   
  </td>
  </tr>
 </tbody>
 </table>
</div>

控制器文件代码如下:

var mybasis = angular.module("mybasis",["mycommon"]);
mybasis.controller("myctrl", function ($scope) {
 $scope.tabledata = {
 multiselect: false,
 pagesize: [10, 20, 50],
 thead: ["导入时间", "导入名称", "结果", "操作"],
 theadname: ["importdate", "name", "result", "oper"]
 };
});

以上,完成了表格展示数据的功能,可是在表格列里面,经常有对某行数据的操作,而这些操作我们同样需要以html的形式插入到表格里面,并且这些html中,还会有ng-click等之类的指令,或者是自定义的指令。比如:"<a href='javascript:;' ng-click='show(item)'>查看信息</a>"; 这类的html,插入到td中,会以html代码展示出来,并不会转换成html。

在网上查阅了方法后,找到了一个转html的解决办法,增加一个过滤器,如下:

mycommon.filter("trusted", function ($sce) {
 return function (html) {
 if (typeof html == "string") {
  return $sce.trustashtml(html);
 }
 return html;
 }
});

然后修改temp文件中的代码:

 <td ng-repeat="name in tabledata.theadname">
 <span ng-bind-html="item[name] | trusted"></span>
</td>

通过以上方法,确实可以将html转成正常的结果,可是a标签上的ng-click却没有效果,查看了问题的关键,是这段html并没有经过angular的编译,所以ng-click不起作用,需要手动编译,修改如下:

temp文件代码修改:

 <td ng-repeat="name in tabledata.theadname">
 <div compile-bind-expn = "item[name]">
 </div>
 </td>

当item[name] 等于 "<a href='javascript:;' ng-click='show(item)'>查看信息</a>"时,我们需要通过compilebindexpn指令来手动编译,再放到div里面去。指令代码如下:

mycommon.directive("compilebindexpn", function ($compile) {
 return function linkfn(scope, elem, attrs) {
 scope.$watch("::"+attrs.compilebindexpn, function (html) {
  if (html && html.indexof("<") != -1 && html.indexof(">") != -1) {
  console.log(1);
  var expnlinker = $compile(html);
  expnlinker(scope, function transclude (clone) {
   elem.empty();
   elem.append(clone);
  });
  } else {
  elem.empty();
  elem.append(html);
  }
 })
 }
});

经过这种解决方法后,终于能够正常展示html代码,且其上的ng-click方法也能正常使用。如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!