gpt4 book ai didi

Angular(2+) polyfills : Problems with IE - . includes()

转载 作者:搜寻专家 更新时间:2023-10-30 21:27:15 25 4
gpt4 key购买 nike

经过大量试验后,我发现,使用 .includes()在 .html 模板中将错误出 IE 中的应用程序。

例如*ngIf="selectedItems.includes(item)

我已启用 polyfills.ts 中的所有内容,IE 仍然无法正确读取我的代码。

例如,在阅读 {{aVariable}} 时在 .html 模板中,如果有 includes(),它不会显示在 IE 上,奇怪的是,如果我放一个 *ngIf="true" 就可以了在它的 html 标签中,例如:

<span *ngIf="true">{{aVariable}}</span>

删除所有 .includes() 时在 .html 模板中,一切似乎都运行良好。

我错过了什么,这也可以在 polyfills 中解决吗?

最佳答案

奇怪的是,经过大量搜索,我终于在github 找到了解决方案。发布此问题后。

在 Polyfills.ts 中添加以下行将通过 includes 解决此问题:

import 'core-js/es6/array';
import 'core-js/es7/array';

希望这对其他人有帮助。

关于Angular(2+) polyfills : Problems with IE - . includes(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52137526/

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