Angular: limitTo труба не работает

Я пытаюсь запустить limitTo pipe на Angular2 в строке:

{{ item.description | limitTo : 20 }} 

И я получаю следующую ошибку:

The pipe 'limitTo' could not be found

Возможно ли, что эта труба была удалена в Angular2?

Это мой app.module

import {TruncatePipe} из './limit-to.pipe';

@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>

Ответ 1

Сначала вам нужно создать канал.

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 }} 

Демо plunker

Ответ 2

Чтобы ответить на ваш вопрос, если он был удален: да и нет. limitTo кажется удаленным, но есть труба slice, которая в основном делает то же самое, что и limitTo, и может использоваться как для строк, так и для списков. Это также дает вам возможность начать свое ограничение при заданном индексе начала, который является опрятным.

В вашем случае достаточно простого {{ item.description | slice:0:20 }}. Если вы не хотите больше опыта писать свою собственную трубку, которую я даже поощряю;)

Источник и документация: https://angular.io/docs/ts/latest/api/common/index/SlicePipe-pipe.html

Ответ 3

Вы можете использовать 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>

Ответ 4

Я добавил этот код, чтобы сделать его более понятным

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

чтобы показать, что данные нарезаны и содержат больше данных, которые скрыты