Ionic2 App Import BrowserAnimationsModule or NoopAnimationsModule问题

时间:2023-12-25 20:48:31

在开发app的过程中遇见了动画相关方面的问题,具体如下:

Ionic2 App Import BrowserAnimationsModule or NoopAnimationsModule问题

解决方法是:在app.module.ts模块中引入BrowserAnimationsModule

import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
@NgModule({
...,
imports: [
...,
BrowserAnimationsModule
],
...
})  
然后运行调试,又出现了如下错误:
Ionic2 App Import BrowserAnimationsModule or NoopAnimationsModule问题 分析原因是没有安装@angular/animations模块,继续安装这个模块:
npm install @angular/animations@latest --save

安装成功之后,调试运行,不再报错,app工作正常。

参考资料:

1.https://*.com/questions/43241193/angular-4-import-browseranimationsmodule-or-noopanimationsmodule

2.https://*.com/questions/42857345/cannot-find-module-angular-animations