我收到错误:
模板解析错误:找不到管道"amDateFormat"
这是我的app.module.ts
import { NgModule } from '@angular/core';
...
import { MomentModule } from 'angular2-moment';
...
@NgModule({
declarations: [
MyApp
],
imports: [
...
MomentModule,
...
],
bootstrap: [IonicApp],
entryComponents: [
MyApp
],
providers: [
...
]
})
export class AppModule { }
然后在service-booking-details.ts
中,我正在执行以下操作:
import { Component} from '@angular/core';
import { IonicPage, NavController, NavParams} from 'ionic-angular';
import { MomentModule } from 'angular2-moment';
...
@IonicPage()
@Component({
selector: 'page-item-detail',
templateUrl: 'service-booking-detail.html'
})
export class ServiceBookingDetailPage {
service: any;
...
constructor(..., navParams: NavParams, ...) {
this.service = navParams.get('service');
}
}
然后在service-booking-detail.html
模板中,我尝试使用角度 2-moment 的管道:
<ion-content>
<ion-card>
<ion-card-content>
<p>{{ service.data | amDateFormat:'LL' }}</p>
</ion-card-content>
</ion-card>
</ion-content>
然后,它会抛出错误"模板解析错误:找不到管道'amDateFormat'"。
如何导入 MomentModule,以便我可以在模板中使用它而不会出错?
我能够通过将其导入特定页面 *.module.ts 文件来使其工作。
如果规范文件中存在这种情况(茉莉花、量角器)
import { MomentModule } from "ngx-moment";
beforeEach(() => {
imports: [ MomentModule ]
});
为我工作
在我的情况下,将MomentModule
导入从app.module.ts
移动到与组件相同的模块是固定的。
您可以将 momentModule 添加到特定的页面模块,或者最好将其添加到共享模块上。
希望对您有所帮助。