错误:在此配置中,Angular 需要 IE11 中 Angular 应用程序中的 Zone.js

问题描述 投票:0回答:3

我正在使用 Angular 9 应用程序,加载应用程序时我在 IE11 中收到此错误。 错误:在此配置中,Angular 需要 Zone.js。 并且组件无法加载并在控制台中显示上述错误。 我尝试添加导入“zone.js”。但这没有用。 另外,尝试添加index.html 文件。但没有运气。 此问题仅在 IE11 中发生。在 Chrome 和 Firefox 中运行良好。

angular internet-explorer-11 zone.js
3个回答
2
投票

当我们在index.html中导入zone.js时,它工作正常。

<script src="https://cdnjs.cloudflare.com/ajax/libs/zone.js/0.8.19/zone.js"></script>

0
投票

您需要像之前提到的那样加载库:

https://stackoverflow.com/a/39593160/10659482

<script src="node_modules/core-js/client/shim.min.js"></script>
<script src="node_modules/zone.js/dist/zone.js"></script>
<script src="node_modules/reflect-metadata/Reflect.js"></script>
<script src="node_modules/systemjs/dist/system.src.js"></script>

0
投票

我个人也遇到过同样的问题,看看这个:

https://github.com/angular/angular/issues/57412

© www.soinside.com 2019 - 2024. All rights reserved.