离子3懒载装,并带有AmdateFormat管



我正在使用ionic3,并且正在转换为懒惰加载以提高启动性能。

ChatsPage转换为懒惰加载后,我正在遇到管道问题。如下所示,它在我的chats.html中抱怨使用以下行。

    <h3 class="chat-time">{{item.timestamp | amDateFormat: 'D MMM YYYY'}}</h3>
ERROR Error: Uncaught (in promise): Error: Template parse errors:
The pipe 'amDateFormat' could not be found ("item.memberId2 && !item.lastMsg_read2))}">{{item.lastMsg_text}}</p>
        <h3 class="chat-time">{{[ERROR ->]item.timestamp | amDateFormat: 'D MMM YYYY'}}</h3>
      </ion-item>
"): ng:///ChatsPageModule/ChatsPage.html@28:32
Error: Template parse errors:
The pipe 'amDateFormat' could not be found ("item.memberId2 && !item.lastMsg_read2))}">{{item.lastMsg_text}}</p>
        <h3 class="chat-time">{{[ERROR ->]item.timestamp | amDateFormat: 'D MMM YYYY'}}</h3>
      </ion-item>

问题

有什么想法如何处理lazy loading的amDateFormat(Angular2-Moment(?

更多信息:

Your system information:
Cordova CLI: 6.4.0 
Ionic Framework Version: 3.0.1
Ionic CLI Version: 2.1.18
Ionic App Lib Version: 2.1.9
Ionic App Scripts Version: 1.3.0
ios-deploy version: Not installed
ios-sim version: Not installed
OS: macOS Sierra
Node Version: v6.9.4
Xcode version: Xcode 8.3.2 Build version 8E2002

对于懒惰加载,您需要将模块添加到 page.module.ts 的导入中。

import {MomentModule} from 'angular2-moment';
@NgModule({
  imports: [
    MomentModule
  ],

相关内容

  • 没有找到相关文章

最新更新