21

我正在尝试limitTo在字符串上的 Angular2 上运行管道:

{{ item.description | limitTo : 20 }} 

我收到以下错误:

The pipe 'limitTo' could not be found

是否有可能在 Angular2 中删除了该管道?

这是我的app.module

从'./limit-to.pipe'导入{TruncatePipe};

@NgModule({
  imports: [ 
    BrowserModule,
    FormsModule,
    HttpModule,
    InMemoryWebApiModule.forRoot(InMemoryDataService),
    RouterModule.forRoot([
      {
        path: '',
        redirectTo: '/home',
        pathMatch: 'full'
      },
      {
        path: 'home',
        component: GridComponent
      },
    ])
  ],
  declarations: [ 
    AppComponent, 
    TopNavComponent, 
    GridComponent,
    TruncatePipe
  ],
  providers: [
    PinService,
  ],
  bootstrap: [ AppComponent ]
})
export class AppModule { }

我使用管道的网格组件:

import { Component,OnInit } from '@angular/core';
import { Router }   from '@angular/router';

@Component({    
    moduleId : module.id,
    selector: 'my-grid',    
    templateUrl : 'grid.component.html',
    styleUrls: [ 'grid.component.css']
})

export class GridComponent  implements OnInit{


    constructor(
        private router: Router,
        private gridService: GridService) {
    }

    ngOnInit(): void {
    }
}

我的管道定义:

import { PipeTransform, Pipe  } from '@angular/core';

@Pipe({
  name: 'limitToPipe'
})
export class TruncatePipe implements PipeTransform {

  transform(value: string, limit: number) : string {

    let trail = '...';

    return value.length > limit ? value.substring(0, limit) + trail : value;
  }

}

最后是我的模板:

<div *ngFor="let item of items" class="grid-item">
  <p class="simple-item-description">
    {{ item.description | limitToPipe :  20 }} 
  </p>                
</div>
4

5 回答 5

76

为了回答您的问题是否已被删除:是和否。limitTo似乎已被删除,但有一个slice管道基本上与字符串和列表相同limitTo并且可以用于字符串。它还为您提供了在给定的起始索引处开始限制的机会,这很简洁。

在你的情况下,一个简单的{{ item.description | slice:0:20 }}就足够了。除非您想获得更多编写自己的管道的经验,我什至鼓励这样做;)

来源和文档:https ://angular.io/docs/ts/latest/api/common/index/SlicePipe-pipe.html

于 2017-02-14T10:06:17.650 回答
26

首先,您需要创建一个管道。

import { Pipe, PipeTransform } from '@angular/core';

@Pipe({
  name: 'limitTo'
})
export class TruncatePipe {
  transform(value: string, args: string) : string {
    // let limit = args.length > 0 ? parseInt(args[0], 10) : 10;
    // let trail = args.length > 1 ? args[1] : '...';
    let limit = args ? parseInt(args, 10) : 10;
    let trail = '...';

    return value.length > limit ? value.substring(0, limit) + trail : value;
  }
}

在 module.ts 文件中添加管道

import { NgModule }      from '@angular/core';
import {  TruncatePipe }   from './app.pipe';

@NgModule({
  imports:      [
  ],
  declarations: [
    TruncatePipe
  ],
  exports: [ 
  ]
})

export class AppModule { }

然后在绑定代码中使用管道:

{{ item.description | limitTo : 20 }} 

演示插件

于 2016-10-13T18:39:03.080 回答
7

我添加了这段代码以使其更有意义

{{ item.description | slice:0:20 }}{{ item.description.length > 20 ? '....read more' : '' }}

显示数据被切片并包含更多隐藏的数据

于 2019-10-15T06:40:44.890 回答
2

您可以改用ng2 -truncate

它有更多选项,例如:按单词截断,按字符截断,截断左侧(...abc)...。

$ npm install ng2-truncate --save

声明

import { Component } from '@angular/core';
import { TruncateModule } from 'ng2-truncate';

@Component({
    selector: 'my-component',
    template: '<p>{{ "123456789" | truncate : 3 }}</p>'
})
export class MyComponent {

}

@NgModule({
  imports: [ TruncateModule ],
  declarations: [ MyComponent ]
})
export class MyApp { }

零件

@Component({
    ...
    template: '<p>{{ "123456789" | truncate : 3 : "..." }}</p>',
    ...
})

结果:

<p>123...</p>
于 2017-07-10T07:44:01.260 回答
1

限制记录的简单解决方案

<li *ngFor="let item of _source| slice:0:3; let ind=index;">
   {{item.description}}
</li> 


Here slice:0:3 --> 3 is the 3 records length means only first three records will be displayed.
于 2020-03-12T06:02:20.853 回答