IE10 上的日期管道问题 - 'Intl' 未定义
date pipe issue on IE10 - 'Intl' is undefined
我有以下使用 Angular 2 日期管道的简单示例,它在 IE11 中工作正常但在 IE10 上失败:
@Component({
selector: 'my-app',
template: 'my date: {{ myDate | date }}'
})
export class AppComponent {
myDate: Date = new Date();
}
一个IE10,出现'Intl' is undefined
错误。 shim 已正确加载,就像快速入门示例一样。
这是 plunker - http://plnkr.co/edit/rJIAay1mRXnnFtNvmM7x?p=preview
如果您在F12 工具中打开IE10 仿真模式,则会出现该错误。我如何在 IE10 浏览器上解决这个问题?
(唯一)合理的解释是 Intl
不是 polyfilled。
作为 core-js
文档 states,
ECMA-402 Intl
is missed because of size. You can use this polyfill.
我有以下使用 Angular 2 日期管道的简单示例,它在 IE11 中工作正常但在 IE10 上失败:
@Component({
selector: 'my-app',
template: 'my date: {{ myDate | date }}'
})
export class AppComponent {
myDate: Date = new Date();
}
一个IE10,出现'Intl' is undefined
错误。 shim 已正确加载,就像快速入门示例一样。
这是 plunker - http://plnkr.co/edit/rJIAay1mRXnnFtNvmM7x?p=preview
如果您在F12 工具中打开IE10 仿真模式,则会出现该错误。我如何在 IE10 浏览器上解决这个问题?
(唯一)合理的解释是 Intl
不是 polyfilled。
作为 core-js
文档 states,
ECMA-402
Intl
is missed because of size. You can use this polyfill.