ChatGPT解决这个技术问题 Extra ChatGPT

'找到合成属性@panelState。请在您的应用程序中包含“BrowserAnimationsModule”或“NoopAnimationsModule”。

我使用 angular-seed 升级了 Angular 4 项目,现在出现错误

找到合成属性@panelState。请在您的应用程序中包含“BrowserAnimationsModule”或“NoopAnimationsModule”。

https://i.stack.imgur.com/Pddv7.png

我怎样才能解决这个问题?错误消息到底告诉我什么?


M
Mark Amery

确保已安装 @angular/animations 软件包(例如,通过运行 npm install @angular/animations)。然后,在你的 app.module.ts

import { BrowserAnimationsModule } from '@angular/platform-browser/animations';

@NgModule({
  ...,
  imports: [
    ...,
    BrowserAnimationsModule
  ],
  ...
})

如何检查它是否安装在PC上。?
npm list --depth=0 列出您项目中已安装的软件包
如果已经安装,预期的结果是什么。?我只能看到这 2 个:├── @angular/platform-browser@4.3.5 ├── @angular/platform-browser-dynamic@4.3.5
我已经安装了所有动画包,并在 AppModule 中导入了“BrowserAnimationsModule”。但它仍然得到错误。
@crossRT如果您在不同的文件中创建动画,您是否还导入了动画?
S
Stefan Falk

此错误消息通常具有误导性。

可能忘记了导入 BrowserAnimationsModule。但这不是我的问题。我在根目录 AppModule 中导入 BrowserAnimationsModule,每个人都应该这样做。

问题与模块完全无关。我在组件模板中为*ngIf 设置动画,但我忘记在 @Component.animations 组件类 中提及它。

@Component({
  selector: '...',
  templateUrl: './...',
  animations: [myNgIfAnimation] // <-- Don't forget!
})

如果您在模板中使用动画,您还必须在组件的animations元数据中列出该动画...每次


绝对地。但与此同时,对于那些像我一样陷入困境并且只找到上述建议的人,我的回答让你再尝试一件事。
实际上,您需要验证您的应用程序组件(根父级)是否也包含此内容
我也得到了那个误导性错误(使用 Angular 7.1)
我正在使用 Angular 8.0.0 并得到了该异常,但是按照您所说的在组件中定义动画修复了所有问题,谢谢。
与@Alireza 相同,我在 Angular 8.0 上遇到了同样的错误。组件作品中包含的动画。
w
wodzu

当我尝试使用 BrowserAnimationsModule 时遇到了类似的问题。以下步骤解决了我的问题:

删除 node_modules 目录 使用 npm cache clean 清除包缓存 运行此处列出的这两个命令之一来更新现有包

如果您遇到 404 错误,例如

http://.../node_modules/@angular/platform-browser/bundles/platform-browser.umd.js/animations

在您的 system.config.js 中将以下条目添加到 map

'@angular/animations': 'node_modules/@angular/animations/bundles/animations.umd.min.js',
'@angular/animations/browser':'node_modules/@angular/animations/bundles/animations-browser.umd.js',
'@angular/platform-browser/animations': 'node_modules/@angular/platform-browser/bundles/platform-browser-animations.umd.js'

naveedahmed1 提供了解决方案 on this github issue


感谢您提供此信息...我很欣赏这是 Angular 的新版本,但感觉就像是在一个又一个问题上解决问题,并且在这些变通方法中磕磕绊绊。这是严重的用户不友好的东西。
@MikeGledhill 是的,在过去的一年里,他们确实完全不擅长让事情变得容易升级。这是一次悲惨的经历。
正如我今天发现的那样,仅当您的项目基于 angular quickstart 种子时才会出现此问题。新的 Angular cli 不使用这种配置文件
H
Howard

对我来说,我错过了 @Component 装饰器中的这个声明:动画:[yourAnimation]

一旦我添加了这个语句,错误就消失了。 (角度 6.x)


实际上,在 angular documentation 中有一个关于此的页面。我应该有 RTFM
K
Kofi Sammie

我所要做的就是安装这个

npm install @angular/animations@latest --save  

然后导入

import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; 

到您的 app.module.ts 文件中。


-1;这大部分只是重复了几个月前发布的已接受答案,但也错过了将 BrowserAnimationsModule 传递给 @NgModule 装饰器的步骤。它与几小时前发布的vikvincer's answer几乎相同。
它不是任何人答案的重复。我的回答就是我所做的。 @NgModule 装饰器是正确的。虚拟相同加起来就是结论性的答案,伙计。你不需要标记。
C
Chandrahasa Rai

安装动画模块后,您可以在 app 文件夹中创建一个动画文件。

路由器动画.ts

import { animate, state, style, transition, trigger } from '@angular/animations';
    export function routerTransition() {
        return slideToTop();
    }

    export function slideToRight() {
        return trigger('routerTransition', [
            state('void', style({})),
            state('*', style({})),
            transition(':enter', [
                style({ transform: 'translateX(-100%)' }),
                animate('0.5s ease-in-out', style({ transform: 'translateX(0%)' }))
            ]),
            transition(':leave', [
                style({ transform: 'translateX(0%)' }),
                animate('0.5s ease-in-out', style({ transform: 'translateX(100%)' }))
            ])
        ]);
    }

    export function slideToLeft() {
        return trigger('routerTransition', [
            state('void', style({})),
            state('*', style({})),
            transition(':enter', [
                style({ transform: 'translateX(100%)' }),
                animate('0.5s ease-in-out', style({ transform: 'translateX(0%)' }))
            ]),
            transition(':leave', [
                style({ transform: 'translateX(0%)' }),
                animate('0.5s ease-in-out', style({ transform: 'translateX(-100%)' }))
            ])
        ]);
    }

    export function slideToBottom() {
        return trigger('routerTransition', [
            state('void', style({})),
            state('*', style({})),
            transition(':enter', [
                style({ transform: 'translateY(-100%)' }),
                animate('0.5s ease-in-out', style({ transform: 'translateY(0%)' }))
            ]),
            transition(':leave', [
                style({ transform: 'translateY(0%)' }),
                animate('0.5s ease-in-out', style({ transform: 'translateY(100%)' }))
            ])
        ]);
    }

    export function slideToTop() {
        return trigger('routerTransition', [
            state('void', style({})),
            state('*', style({})),
            transition(':enter', [
                style({ transform: 'translateY(100%)' }),
                animate('0.5s ease-in-out', style({ transform: 'translateY(0%)' }))
            ]),
            transition(':leave', [
                style({ transform: 'translateY(0%)' }),
                animate('0.5s ease-in-out', style({ transform: 'translateY(-100%)' }))
            ])
        ]);
    }

然后将此动画文件导入到任何组件中。

在您的 component.ts 文件中

import { routerTransition } from '../../router.animations';

@Component({
  selector: 'app-test',
  templateUrl: './test.component.html',
  styleUrls: ['./test.component.scss'],
  animations: [routerTransition()]
})

不要忘记在 app.module.ts 中导入动画

import { BrowserAnimationsModule } from '@angular/platform-browser/animations';

T
Tanel Jõeäär

我的问题是我的 @angular/platform-browser 版本为 2.3.1

npm install @angular/platform-browser@latest --save

升级到 4.4.6 成功了,并在 node_modules/@angular/platform-browser 下添加了 /animations 文件夹


这也最终将我的整个 Angular 项目升级到 4.4.6
N
Nanda Kishore Allu

动画应应用于特定组件。

EX:在其他组件中使用动画指令并在另一个组件中提供。

CompA --- @Component ({

动画 : [动画] }) CompA --- @Component ({

动画:[动画] <=== 这应该在使用的组件中提供})


A
Alessandro_russo

对我来说是因为我将动画名称放在方括号内。

<div [@animation]></div>

但是在我移除支架后一切正常(在 Angular 9.0.1 中):

<div @animation></div>

T
Trilok Pathak

我收到以下错误:

Found the synthetic property @collapse. Please include either "BrowserAnimationsModule" or "NoopAnimationsModule" in your application.

我遵循 Ploppy 接受的答案,它解决了我的问题。

以下是步骤:

1.
    import { trigger, state, style, transition, animate } from '@angular/animations';
    Or 
    import { BrowserAnimationsModule } from '@angular/platform-browser/animations';

2. Define the same in the import array in the root module.

它将解决错误。编码快乐!!


v
vikvincer

尝试这个

npm install @angular/animations@latest --save

从'@angular/platform-browser/animations'导入{ BrowserAnimationsModule };

这对我有用。


-1;这大部分只是重复了几个月前发布的已接受答案,但也错过了将 BrowserAnimationsModule 传递给 @NgModule 装饰器的步骤。
G
Girish
--
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
---

@NgModule({
  declarations: [   --   ],
  imports: [BrowserAnimationsModule],
  providers: [],
  bootstrap: []
})

请为您的代码提供解释。单独发布代码对除了 OP 之外的任何人都没有帮助,而且他们不明白它为什么起作用(或不起作用)。
虽然此代码段可能会解决问题,但它没有解释为什么或如何回答问题。请包括对您的代码的解释,因为这确实有助于提高您的帖子的质量。请记住,您是在为将来的读者回答问题,而那些人可能不知道您的代码建议的原因
-1;这只是从接受的答案中复制内容。
S
Saurav

只需添加 .. import { BrowserAnimationsModule } from '@angular/platform-browser/animations';

进口:[ .. BrowserAnimationsModule

],

在 app.module.ts 文件中。

确保您已安装 .. npm install @angular/animations@latest --save


-1 用于复制此处已包含大量其他答案的内容。
E
Eman Jayme

angularJS 4 的更新:

错误:(SystemJS)XHR 错误(404 Not Found)加载 http://localhost:3000/node_modules/@angular/platform-browser/bundles/platform-browser.umd.js/animations

解决方案:

**cli:** (command/terminal)
npm install @angular/animations@latest --save

**systemjs.config.js** (edit file)
'@angular/animations': 'npm:@angular/animations/bundles/animations.umd.js',
'@angular/animations/browser': 'npm:@angular/animations/bundles/animations-browser.umd.js',
'@angular/platform-browser/animations': 'npm:@angular/platform-browser/bundles/platform-browser-animations.umd.js',

**app.module.ts** (edit file)
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
@NgModule({
  imports:      [ BrowserModule,BrowserAnimationsModule ],
...

-1; “angularJS 4”不是一个东西,不清楚你到底想在这里表达什么,因为你只是提供了一个错误消息和一个难以阅读的代码块,而没有一句解释。