angular – Ionic 2 – 如何导入Intl polyfill

前端之家收集整理的这篇文章主要介绍了angular – Ionic 2 – 如何导入Intl polyfill前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是Ionic2 / Angular2&的新手.我一直在环顾四周,找到了几个解决方案,以解决使用国际日期格式修复polyfill问题需要做什么(例如答案: Ionic 2,Using Angular 2 Pipe breaks on iOS—”Can’t find variable: Intl”)

但我不明白的是什么没有教程/堆栈溢出的解释帮助我弄清楚,究竟是什么以及如何完成这一点.我做了npm install以将intl包添加到我的节点模块中,但是所有内容只是说“然后导入它”但我不知道该怎么做,因为我没有polyfill.ts文件我可以将其导入,只有build / polyfill.js文件&我尝试直接导入使用intl日期操作的.ts文件,但这并没有解决问题.

我可能不理解一些非常基本的东西,这就是为什么没有人明确说明你需要导入它的原因,但是有人可以向我解释如何导入它或者引用我的资源来解释我不是理解.

通常,polyfill.ts会导入到应用程序模块文件中,该文件将正常引导您的应用程序,这是main.ts文件,因此在应用程序模块引导程序文件中导入所需的polyfill应该可以解决问题.

这是一个例子:

main.ts

import './polyfills.ts';

import {platformBrowserDynamic} from '@angular/platform-browser-dynamic';
import {enableProdMode} from '@angular/core';

import {environment} from './environments/environment';
import {AppModule} from './app/app.module';

if (environment.production) {
  enableProdMode();
}

platformBrowserDynamic().bootstrapModule(AppModule);

polyfill.ts

// All needed polyfills for example web animations
import 'web-animations-js/web-animations.min';

猜你在找的Angularjs相关文章