表格的angular指令:使用ng-bind-html绑定已转换的元素

时间:2014-02-20 15:53:57

标签: angularjs angularjs-directive angularjs-controller transclusion

我正在尝试编写这样的通用表指令:

<h-table rows="customers">
  <h-column field="Id">
    <a ng-click="editCustomer(row.Id)">{{row.Id}}</a>
  </h-column>
  <h-column field="Name">
  </h-column>
</h-table>

这将生成以下html:

<table>
  <tr>
    <th>Id</th>
    <th>Name</th>
  </tr>
  <tr>
    <td>
      <a ng-click="editCustomer(1)">1</a>
    </td>
    <td>
      Alexandre
    </td>
  </tr>
  ...
</table>

我的h-table模板类似于:

<script type="text/ng-template" id="hTableTemplate.html">
    <div>
        <div ng-transclude id="limbo" style="display: none"></div>
        <table>
            <tr>
                <th ng-repeat="col in cols">{{col.field}}<th>
            </tr>
            <tr ng-repeat="row in rows">
                <td ng-repeat="col in cols">
                    // Here I need to put the content of h-column directive 
                    // if it exists, or just bind the value for the column
                    <span ng-bind-html="getContentOrValueFor(row, col)" />
                </td>
            </tr>
        <table>
    </div>
</script>

所以我需要创建两个指令:h-table和h-column。 h-table指令使用指令控制器,两个指令都将使用它。 h-column指令将使用此控制器将cols添加到表中并获取row / col的值。

到目前为止,这是我指令的控制器:

.controller("hTable", function ($scope, $element, $attrs, $compile) {
    $scope.cols = [];

    this.addCol = function (col) {
        $scope.cols.push(col);
    };

    $scope.getContentOrValueFor = function (row, col) {
        // MY PROBLEM IS HERE! I will explain below ...
        return col.content && col.content.html() ? col.content.html() : row[col.field];
    };
})

我的h-column指令接收h-table的控制器。 它使用transclude获取内容并将此内容保存在col对象中,以便在以下内容后绑定它:

.directive("hColumn", function () {
    return {
        restrict: "E",
        require: "^hTable",
        transclude: true,
        scope: {
            field: "@",
        },
        link: function(scope, element, attrs, hTableController, transclude) {
            var col = {};
            col.field = scope.field;
            col.content = transclude();  // <-- Here I save h-column content to bind after
            hTableController.addCol(col);
            ...
        }
    };
})

最后:)我的h-table指令:

.directive("hTable", function () {
    return {
        restrict: "E",
        scope : {
            rows: "="
        },
        controller: "hTable",
        require: "hTable",
        replace: true,
        transclude: true,
        templateUrl: "hTableTemplate.html",
        link: function(scope, element, attrs, hTableController) {
        ...
        }
    };
})

我需要将h-column的内容放在td标记内。所以,我调用getContentOrValueFor函数来获取h-column指令中的这个内容。

如果没有内容,那么我将使用该字段的值进行绑定。

如果h列的内容类似于{{1 + 2 + 3}}(它会显示6,那没关系),它会正常工作。

但是如果这个内容是一个html标签,如:

<a href="somelink">test</a>

我收到错误“html.indexOf不是函数”

我怎样才能实现这个目标?

1 个答案:

答案 0 :(得分:0)

这是由于我认为不包括ngSanatize造成的。请参阅:https://docs.angularjs.org/api/ng/directive/ngBindHtml