过滤在嵌入的 DOM 内容中不起作用

Filtering not working in transcluded DOM content

我正在构建两个 AngularJS(版本 1.6.5)组件,当我使用嵌入时我无法进行过滤。

第一个组件是一个简单的容器,它使用嵌入来填充 <div> 内容:

app.component('panelWithTitle', {
  template: '<div><h1>{{$ctrl.title}}</h1><div class="content" ng-transclude></div></div>',
  bindings: {
    title: '@'
  },
  require: 'title',
  transclude: true
});

第二个组件使用容器 (<panel-with-title>) 并为其提供一个简单的过滤(来自输​​入字段)列表:

app.component('mainComponent', {
  controller: function($scope) {
    $scope.allItems = ["10", "100", "200", "42", "1337"];
    // Simple filter function (may be more complicated)
    $scope.filterFunc = function (item) {
      if (!$scope.filterValue) {
        // No value
        return true;
      }
      return item.indexOf($scope.filterValue) !== -1;
    };
  },
  template: '<panel-with-title title="MyTitle">'            // Replace by <div>
      + '<input type="text" ng-model="filterValue">'
      + '<ul><li ng-repeat="item in allItems | filter:filterFunc">{{item}}</li></ul>'
      + '</panel-with-title>'                               // Replace by </div>
});

在该状态下,过滤不起作用,因为 $scope.filterValue 未定义。 Here is a demo Plunkr。我注意到:

我做错了什么导致它不起作用?为什么 $scope.filterValue 未定义而 $scope.allItems 已定义?

谢谢。

您的 $scope.filterValue 总是 undefined 并过滤 returns true 因为您的模板使用不同的范围。

所以将 $root 添加到 filterValue 就像:

<input type="text" ng-model="$root.filterValue">

并在组件中使用 $scope.$parent.filterValue:

return item.indexOf($scope.$parent.filterValue) !== -1;

Demo Plunker


顺便说一句,问得好:)

如果你不想写更多的代码意味着(filterFunc函数)那么

您应该将此代码连接到模型 (ng-model="filterValue"),以便通过模型直接过滤。 请找到我下面的plunker link -

http://plnkr.co/edit/sp9XFUMXLdmSwESujMQD?p=preview

app.component('mainComponent', {
  controller: function($scope) {
    $scope.allItems = ["10", "100", "200", "42", "1337"];
  },
  template: '<panel-with-title title="MyTitle">'            // Replace by <div>
      + '<input type="text" ng-model="filterValue">'
      + '<ul><li ng-repeat="item in allItems | filter:filterValue">{{item}}</li></ul>'
      + '</panel-with-title>'                               // Replace by </div>
});