- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
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/
我刚刚使用 ng2 cli 安装了一个 bearbones ng2 应用程序。在我的 AppModule我添加了 schema: [ CUSTOM_ELEMENTS_SCHEMA ] , 在我的 Ap
PinchZoom 是我在 Angular 6 项目中安装的 Node 模块 ngx-pinch-zoom。可能值得注意的是,它也是一个 ionic 4 项目。 在我的 app.module.ts 中
在为我的 Angular 2 应用程序编写测试时,我遇到了这些错误:我们正在使用的选择器: "): AppComponent@12:35 'tab-view' is not a known eleme
我刚从 Angular 2 rc4 升级到 rc6,但遇到了麻烦。 我在控制台上看到以下错误: Unhandled Promise rejection: Template parse errors:
zone.js@0.6.25?main=browser:355 Unhandled Promise rejection: Template parse errors: 'ng-template' is
我是一名优秀的程序员,十分优秀!