如何在angular cli项目中对Promise进行polyfill?

时间:2017-09-07 17:57:20

标签: angular safari promise angular-cli polyfills

在Safari 5.1.7上,我从空白的新angular-cli项目中获取ReferenceError: Can't find variable: Promise vendor.bundle.js。我尝试添加

import 'core-js/es6/promise';

import PolyFillPromise from 'core-js/es6/promise';
Promise = Promise ? Promise : PolyFillPromise;
polyfills.ts中的

,没有变化。

0 个答案:

没有答案