Questions tagged «babel-polyfill»

7
如何安装babel-polyfill库?
我刚刚开始使用Babel将我的ES6 javascript代码编译成ES5。当我开始使用Promises时,它似乎无法正常工作。Babel网站声明了通过polyfills支持承诺的支持。 没有运气,我尝试添加: require("babel/polyfill"); 要么 import * as p from "babel/polyfill"; 这样,我将在应用程序引导时收到以下错误: 找不到模块“ babel / polyfill” 我搜索了模块,但似乎这里缺少一些基本的东西。我还尝试添加了旧的和好的蓝鸟NPM,但看起来好像没有用。 如何使用Babel的polyfills?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.