gpt4 book ai didi

javascript - 尽管导入了模块并包含 CUSTOM_ELEMENTS_SCHEMA 架构,但组件不是已知元素

转载 作者:行者123 更新时间:2023-11-30 19:12:37 27 4
gpt4 key购买 nike

PinchZoom 是我在 Angular 6 项目中安装的 Node 模块 ngx-pinch-zoom。可能值得注意的是,它也是一个 ionic 4 项目。

在我的 app.module.ts 中,我导入了 PinchZoomModule 并在我的模式中包含了 CUSTOM_ELEMENTS_SCHEMA

import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import { AppRoutingModule } from './app-routing.module';
import { PinchZoomModule } from 'ngx-pinch-zoom';

@NgModule({
declarations: [
AppComponent
],
schemas: [ CUSTOM_ELEMENTS_SCHEMA ],
entryComponents: [],
exports: [],
imports: [
BrowserModule,
AppRoutingModule,
PinchZoomModule,
],
providers: [],
bootstrap: [AppComponent],
})
export class AppModule {}

在一个页面中,我添加了正确的代码来使用 PinchZoom 功能:

<pinch-zoom>
<img class="question-image" [src]="myImageUrl" />
</pinch-zoom>

但是,当我运行我的应用程序时,出现以下错误:

'pinch-zoom' is not a known element:
1. If 'pinch-zoom' is an Angular component, then verify that it is part of this module.
2. If 'pinch-zoom' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. ("ss="ion-padding no-bottom-padding">
[ERROR ->]<pinch-zoom>

最佳答案

您目前使用的是哪个组件?

如果您要导入 PinchZoomModule您必须将使用该标签的组件也导入到您导入的模块中 PinchZoomModule

如果您使用 <pinch-zoom>标记到多个模块中考虑将其移动到一个导入的共享模块 PinchZoomModule

关于javascript - 尽管导入了模块并包含 CUSTOM_ELEMENTS_SCHEMA 架构,但组件不是已知元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58326233/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com