BabelJS - Babel Polyfill

BabelJS - Babel Polyfill

Babel Polyfill 为 Web 浏览器添加了对功能的支持,这些功能不可用。 Babel 将代码从最近的 ecma 版本编译为我们想要的版本。它根据预设更改语法,但不能对使用的对象或方法做任何事情。为了向后兼容,我们必须为这些功能使用 polyfill。

可以polyfilled的功能

以下是在旧浏览器中使用时需要 polyfill 支持的功能列表:

  • Promises
  • Map
  • Set
  • Symbol
  • Weakmap
  • Weakset
  • Array.from, Array.includes, Array.of, Array#find, Array.buffer, Array#findIndex
  • Object.assign, Object.entries, Object.values

我们将创建项目设置并查看 babel polyfill 的工作。

npm init

我们现在将安装 babel 所需的包。

Packages for babel 6

npm install babel-cli babel-core babel-preset-es2015 --save-dev

Packages for babel 7

npm install @babel/cli @babel/core @babel/preset-env --save-dev

这是最终的 package.json

我们还将 es2015 添加到预设中,因为我们要将代码编译为 es5。

.babelrc 用于 babel 6

{
    "presets": [
        "es2015"
    ]
}

.babelrc for babel 7

{
   "presets":["@babel/env"]
}

我们将安装一个 lite-serve 以便我们可以在浏览器中测试我们的代码

npm install --save-dev lite-server

让我们在 package.json 中添加 babel 命令来编译我们的代码

我们还添加了调用 lite-server 的构建命令。

Babel-polyfill 与 babel-core 包一起安装。 babel-polyfill 将在节点模块中可用,如下所示

我们将进一步处理 Promise 并与它一起使用 babel-polyfill。

ES6 - Promises

let timingpromise = new Promise((resolve, reject) => {
   setTimeout(function() {
      resolve("Promise is resolved!");
   }, 1000);
});

timingpromise.then((msg) => {
   console.log("%c"+msg, "font-size:25px;color:red;");
});
npx babel promise.js --out-file promise_es5.js

BabelJS - ES5

"use strict";

var timingpromise = new Promise(function (resolve, reject) {
   setTimeout(function () {
      resolve("Promise is resolved!");
   }, 1000);
});

timingpromise.then(function (msg) {
   console.log("%c"+msg, "font-size:25px;color:red;");
});

编译不需要改变任何东西。 Promise 的代码已按原样编译。但是不支持 Promise 的浏览器会抛出错误,即使我们已经将代码编译为 es5。

为了解决这个问题,我们需要在最终的 es5 编译代码中添加 polyfill。要在浏览器中运行代码,我们将从节点模块中获取 babel-polyfill 文件并将其添加到我们要使用 Promise 的 .html 文件中,如下所示

index.html

<html>
   <head>
   </head>
   <body>
      <h1>Babel Polyfill Testing</h1>
      <script type="text/javascript" src="node_modules/babel-polyfill/dist/polyfill.min.js"></script>
      <script type="text/javascript" src="promise_es5.js"></script>
   </body>
</html>

输出

在 index.html 文件中,我们使用了 node_modules 中的 polyfill.min.js 文件,然后是 promise_es5.js

<script type="text/javascript" src="node_modules/babel-polyfill/dist/polyfill.min.js"></script>

<script type="text/javascript" src="promise_es5.js"></script>

注意 - 在主 javascript 调用之前,必须在开始时使用 Polyfill 文件。

 

String Padding

字符串填充根据指定的长度从左侧添加另一个字符串。字符串填充的语法如下所示:

str.padStart(length, string);
str.padEnd(length, string);
const str = 'abc';

console.log(str.padStart(8, '_'));
console.log(str.padEnd(8, '_'));

输出:

_____abc
abc_____
npx babel strpad.js --out-file strpad_es5.js

结果:

'use strict';

var str = 'abc';

console.log(str.padStart(8, '_'));
console.log(str.padEnd(8, '_'));

js 必须与 babel-polyfill 一起使用,如下所示

<!DOCTYPE html>
<html>
   <head>
      <title>BabelJs Testing </title>
   </head>
   <body>
      <script src="node_modules/babel-polyfill/dist/polyfill.min.js" type="text/javascript"></script>
      <script type="text/javascript" src="strpad_es5.js"></script>
   </body>
</html>

Map, Set, WeakSet, WeakMap

本节我们将学习Map、Set、WeakSet、WeakMap。

Map 是一个具有键/值对的对象。 

Set 也是一个对象,但具有唯一的值。 

WeakMap 和 WeakSet 也是具有键/值对的对象。

Map、Set、WeakMap 和 WeakSet 是 ES6 新增的特性。要将其转换为在旧浏览器中使用,我们需要使用 polyfill。我们将研究一个示例并使用 polyfill 来编译代码。

let m = new Map(); //map example
m.set("0","A");
m.set("1","B");
console.log(m);

let set = new Set(); //set example
set.add('A');
set.add('B');
set.add('A');
set.add('B');
console.log(set);

let ws = new WeakSet(); //weakset example
let x = {};
let y = {};
ws.add(x);
console.log(ws.has(x));
console.log(ws.has(y));

let wm = new WeakMap(); //weakmap example
let a = {};
wm.set(a, "hello");
console.log(wm.get(a));

输出

Map(2) {"0" => "A", "1" => "B"}
Set(2) {"A", "B"}
true
false
hello
npx babel set.js --out-file set_es5.js
"use strict";

var m = new Map(); //map example
m.set("0", "A");
m.set("1", "B");
console.log(m);

var set = new Set(); //set example
set.add('A');
set.add('B');
set.add('A');
set.add('B');
console.log(set);

var ws = new WeakSet(); //weakset example
var x = {};
var y = {};
ws.add(x);
console.log(ws.has(x));
console.log(ws.has(y));

var wm = new WeakMap(); //weakmap example
var a = {};
wm.set(a, "hello");
console.log(wm.get(a));

js 必须与 babel-polyfill 一起使用,如下所示

<!DOCTYPE html>
<html>
   <head>
      <title>BabelJs Testing</title>
   </head>
   <body>
      <script src="node_modules/babel-polyfill/dist/polyfill.min.js" type="text/javascript"></script>
      <script type="text/javascript" src="set_es5.js"></script>
   </body>
</html>

Array Methods

许多属性和方法可以用于数组;例如,array.from、array.includes 等。 让我们考虑处理以下示例以更好地理解这一点。

arraymethods.js

var arrNum = [1, 2, 3];

console.log(arrNum.includes(2));
console.log(Array.from([3, 4, 5], x => x + x));
true
[6, 8, 10]
npx babel arraymethods.js --out-file arraymethods_es5.js
"use strict";

var arrNum = [1, 2, 3];

console.log(arrNum.includes(2));
console.log(Array.from([3, 4, 5], function (x) {
return x + x;
}));

数组上使用的方法按原样打印。为了使它们在旧浏览器上工作,我们需要在开始时添加 polyfill 文件,如下所示

<html>
   <head></head>
   <body>
      <h1>Babel Polyfill Testing</h1>
      <script type="text/javascript" src="node_modules/babel-polyfill/dist/polyfill.min.js"></script>
      <script type="text/javascript" src="arraymethods_es5.js"></script>
   </body>
</html>

版权声明:著作权归作者所有。

thumb_up 0 | star_outline 0 | textsms 0