gpt4 book ai didi

Angular 自定义元素和 Angular 8 Material : MatDialog and MatMenu not working

转载 作者:行者123 更新时间:2023-12-05 07:14:58 25 4
gpt4 key购买 nike

我正在使用 Angular 自定义元素构建一个应用程序,其中 MatDialog 是自定义元素的一部分。我在主机应用程序中也有一个 MatMenu。问题是,当我在页面加载时打开 mat-dialog 然后打开 mat-menu 时,mat-dialog 之后不起作用,否则如果我先打开菜单然后再打开 mat-dialog,则菜单不起作用工作了。

您可以在以下位置找到 stackblitz:https://stackblitz.com/edit/angular-nr58ab-tbu38h

我已经在 index.html 本身中添加了 MatDialog 应用程序的 main.js 代码。 main.js 是在 prod 模式下使用 ngx-build-plus 构建应用程序后生成的,输出散列为无,单包为真。

MatDialog 应用代码如下:

应用程序模块.ts

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

import { NgModule, Injector } from "@angular/core";

import { AppRoutingModule } from "./app-routing.module";
import { AppComponent } from "./app.component";
import { createCustomElement } from "@angular/elements";

import { MatDialogModule, MatButtonModule } from "@angular/material";


@NgModule({
declarations: [AppComponent],
imports: [
BrowserModule,
AppRoutingModule,
MatDialogModule,
BrowserAnimationsModule,
MatButtonModule
],
providers: [],
bootstrap: [AppComponent],
entryComponents: [AppComponent]
})
export class AppModule {
constructor(private injector: Injector) {
const myCustomElement = createCustomElement(AppComponent, {
injector: this.injector
});
customElements.define("app-test-data", myCustomElement);
}
ngDoBootstrap() {}
}

应用程序组件.ts

import { Component, Input, TemplateRef } from "@angular/core";
import { MatDialog } from "@angular/material";

@Component({
selector: "app-root",
templateUrl: "./app.component.html",
styleUrls: ["./app.component.css"]
})
export class AppComponent {
constructor(private dialog: MatDialog) {}
openModal(temp: TemplateRef<any>) {
this.dialog.open(temp, { width: "100px", height: "100px" });
}
}

和 app.component.html

<button mat-raised-button (click)="openModal(modal)">Open</button>

<ng-template #modal>
<mat-dialog-content>
Hello
</mat-dialog-content>
</ng-template>

这是我构建并放入 stackblitz 应用程序的 index.html 中的应用程序。

我现在坚持这个有一段时间了,我也尝试在 NgZone.run() 中运行 dialog.open(),但也没有运气。谢谢。

最佳答案

如果您使用的是 Angular 8 及以下版本。考虑升级到 Angular 10。

我们也面临着基于 Angular 元素的微前端的同样问题。将应用程序升级到 angular 10,问题神奇地解决了。 :)

关于Angular 自定义元素和 Angular 8 Material : MatDialog and MatMenu not working,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59763017/

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