自定义管道未找到离子4 |找不到管道

时间:2019-02-15 14:06:28

标签: angular typescript ionic-framework ionic4

大家好,我是新的离子程序员,我目前正在开发一个使用youtube api(显示来自单个频道的视频)的应用。我遵循了一个教程,即时消息与他的操作相同,但是我的错误出现了。

The pipe 'youtube' could not be found 

即使我按照教程所示创建并导入了youtube管道。 这是我的密码

这是我的app.module.ts

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { RouteReuseStrategy } from '@angular/router';
import {HttpModule} from '@angular/http';

import { IonicModule, IonicRouteStrategy } from '@ionic/angular';
import { SplashScreen } from '@ionic-native/splash-screen/ngx';
import { StatusBar } from '@ionic-native/status-bar/ngx';

import { AppComponent } from './app.component';
import { AppRoutingModule } from './app-routing.module';
import {YoutubePipe} from './youtube.pipe';



@NgModule({
declarations:
  [AppComponent, YoutubePipe],
entryComponents: [],
imports: [BrowserModule, IonicModule.forRoot(), AppRoutingModule, HttpModule],
providers: [
StatusBar,
SplashScreen,
{ provide: RouteReuseStrategy, useClass: IonicRouteStrategy }
],
bootstrap: [AppComponent]
})
export class AppModule {}

这是我的youtube.pipe.ts

import { Pipe, PipeTransform } from '@angular/core';
import {SafeResourceUrl, DomSanitizer} from '@angular/platform-browser';

@Pipe({
name: 'youtube',
})
export class YoutubePipe implements PipeTransform {

constructor(private dom: DomSanitizer) {

}

transform(value: string) {
console.log(this.dom.bypassSecurityTrustResourceUrl('https://www.youtube.com/embed/' + value ));
return this.dom.bypassSecurityTrustResourceUrl('https://www.youtube.com/embed/' + value);
}
}

这是我的home.page.html

<ion-header>
<ion-toolbar>
<ion-title>
  Videos
</ion-title>
</ion-toolbar>
</ion-header>

<ion-content padding>
<ion-card *ngFor="let item of posts">
<ion-card-title>
{{item.snippet.title}}
</ion-card-title>
<ion-card-content>
  <!--img [src]="item.snippet.thumbnails.high.url"/>-->
  <iframe [src]="item.id.videoId | youtube" width="100%" height="315"  frameborder="0" allowfullscreen></iframe>
</ion-card-content>
</ion-card>
</ion-content>

最后一个是我的home.page.ts

import { Component } from '@angular/core';
import {Http} from '@angular/http';

import {NavController} from '@ionic/angular';
import {map} from 'rxjs/operators';



@Component({
selector: 'app-home',
templateUrl: './home.page.html',
styleUrls: ['home.page.scss'],
})
export class HomePage {

search: String = 'ionic 4';
posts: any = [];

constructor(public navCtrl: NavController, public http: Http) {
const url = 'https://www.googleapis.com/youtube/v3/search?part=snippet&order=date&channelId=UCHm8H-_IZMLl4-HYwrsvtNQ&maxResults=20&key=AIzaSyCQuzbBfetLjteTBAoSV3oCM3Mf_dstU6Q';
this.http.get(url).pipe(map(res => res.json())).subscribe(data => {
  this.posts = this.posts.concat(data.items);
  console.log(this.posts);
});

}

}

希望你们能帮助我。 谢谢

2 个答案:

答案 0 :(得分:1)

请勿将管道导入app.module.ts。而是创建一个名为pipe.module.ts的文件,其中包含以下代码:

import { NgModule } from '@angular/core';
import { YoutubePipe } from './youtube.pipe';
@NgModule({
    declarations: [
        YoutubePipe
    ],
    imports: [],
    exports: [
        YoutubePipe
    ]
})
export class PipesModule {}

然后将这个PipesModule导入到您使用管道的home.module.ts中。另外,请确保从import { YoutubePipe } from './youtube.pipe'中删除app.module.ts,因为没有必要在app.module.ts中导入。

答案 1 :(得分:0)

我有以下解决方案,可以在Ionic 4的组件中使用通用管道。 从app.module.ts中删除管道

将管道导入页面模块中。例如home.module.ts

import { CustomPipe } from '../../app/custom.pipe';

将此添加到home.module.ts中的声明

@NgModule({
  imports: [
    CommonModule,
    FormsModule,
    IonicModule,
    RouterModule.forChild(routes)
  ],
  entryComponents: [NewssliderComponent],
  declarations: [HomePage, CustomPipe, NewssliderComponent]
})

您可以使用newsslider.component.html文件中的管道

{{e.publish | CustomPipe}}