首页 > 解决方案 > Internet Explorer 错误 - SCRIPT5009:“承诺”未定义

问题描述

我正在使用 Angular CLI 并在 IE9 上显示此消息“SCRIPT5009:'Promise' 未定义”。我删除了 polyfills.ts 和 IE10 和 IE11 中的注释,但在 IE9 中没有。

标签: angular

解决方案


将此添加到您的 src/polyfills.ts:

import 'core-js/es6/promise';

推荐阅读