ng-lottie和ngx-lottie在ionic-5中不起作用

问题描述

我正在将抽奖式启动动画集成到ionic 5框架中的组件中。

我已经使用npm install --save ng-lottie安装了ng-lottie,并按照文档https://www.npmjs.com/package/ng-lottie中的步骤进行操作。但是,它显示以下错误。请帮助我解决此问题。

Uncaught Error: Template parse errors:
Can't bind to 'options' since it isn't a kNown property of 'lottie-animation-view'.
1. If 'lottie-animation-view' is an Angular component and it has 'options' input,then verify that it is part of this module.
2. If 'lottie-animation-view' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.
3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component. ("

<lottie-animation-view
                    [ERROR ->][options]="lottieConfig"
                    [width]="300"
                    [height]="600"
"): ng:///SsoModule/SsoComponent.html@13:20
Can't bind to 'width' since it isn't a kNown property of 'lottie-animation-view'.

解决方法

当您在app.module.ts中而不是在module.ts中添加依赖项时,此错误很常见。 尝试改变依赖性。