gpt4 book ai didi

Angular 组件未在 Internet Explorer 11 上显示

转载 作者:行者123 更新时间:2023-12-02 13:08:34 25 4
gpt4 key购买 nike

我编写了一个 Angular 4 Material 2 应用程序,在 Chrome 中一切正常,但在 Internet Explorer 上页面为空。我添加了 <h1>到显示的index.html,但是在我的content.component.html中添加一个不起作用,即使整个组件的代码也没有添加到DOM中。

index.html( <h1>Test</h1> 显示在 IE 中):

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>ITEM Projekte</title>
<base href="/">

<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">

<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,400italic">
</head>
<body>
<h1>Test</h1>
<app-root></app-root>
</body>
</html>

app.component.html(<h1>Test</h1>在 IE 中不显示):

<h1>Test</h1>
<md-card>

<md-card-title>ITEM Projekt anlegen</md-card-title>

<md-card-subtitle>PROJEKTDATEN</md-card-subtitle>
<md-card-content>
<div style="width: 100%; ">
<md-input-container *ngFor="let item of projektdaten" style="margin-right: 15px; display: inline-block; ">
<label style="width: 120px; display: block;">{{item.identifier}}:</label><input mdInput name={{item.identifier}} style="width: 150px; " (keyup)="setProjectData(item, $event.target.value)">
</md-input-container>
</div>

<div style="margin-top: 20px;">
<md-radio-group>
<md-radio-button value="1" style="margin-right: 30px; ">Neubau</md-radio-button>
<md-radio-button value="2">Umbau</md-radio-button>
</md-radio-group>
</div>

</md-card-content>

<md-card-subtitle>MATERIALKOSTEN</md-card-subtitle>
<md-card-content>
<md-input-container><label>Test</label><input mdInput></md-input-container>
</md-card-content>

<md-card-subtitle>PERSONALKOSTEN</md-card-subtitle>
<md-card-content>

</md-card-content>

</md-card>

顺便说一句:在 Edge 中一切都工作得很好,但我需要它在 IE 中工作......如果您需要任何其他代码,请告诉我。

提前致谢

最佳答案

我找到了解决方案here .

只需删除 polyfills.ts 中此行下方的注释即可:

/** IE9, IE10 and IE11 requires all of the following polyfills. **/

关于Angular 组件未在 Internet Explorer 11 上显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45670481/

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