我正在使用Ionic3,并且正在转换为Lazy Loading以提高启动性能.
将我的ChatsPage转换为延迟加载后,我遇到管道问题.正如您在下面所看到的,它抱怨在我的chats.html中使用以下行.
<h3 class="chat-time">{{item.timestamp | amDateFormat: 'D MMM YYYY'}}</h3>
06001
题
知道如何处理延迟加载的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 ],