如何在JavaScript中使用polyfill
JavaScript的开发人员始终在不断为JavaScript语言添加新功能,以提高性能和增加更好的功能。有时候,新功能不支持旧版本的浏览器。
例如,指数运算符是在ES7中引入的,并且对象中的尾逗号在ES7中也是有效的。现在,在开发应用程序时,我们在应用程序中使用了指数运算符。它将在更新的浏览器版本中工作,但是如果有人使用非常旧的浏览器版本,他们可能会遇到类似“浏览器引擎不支持指数运算符”的错误。
因此,我们可以使用 polyfill 来避免这种错误。让我们通过将polyfill单词拆分为两部分来理解其含义。Poly意味着许多,fill意味着填补缺口。这意味着通过许多技术填补浏览器中功能的空白,如果浏览器不支持JavaScript的默认功能。
解决浏览器不支持的功能问题可以有两种方法。一种是polyfill,另一种是转译器。转译器将代码转换为较低版本,使浏览器可以支持它。例如,我们可以使用ES7版本的JavaScript编写代码,并使用转译器将其转换为ES6或ES5,以使其能够被旧版浏览器支持。
在这里,我们将学习使用polyfill概念的不同示例。
语法
用户可以按照下面的语法来手动实现JavaScript方法的polyfill概念。
String.prototype.method_name = function (params) {
// implement the code for the method
// use this keyword to access the reference object
}
我们在上述语法中为字符串原型添加了该方法。method_name表示方法名称。我们将接受多个参数的函数分配给该方法。
示例1(不使用polyfill的Includes()方法)
在下面的示例中,我们使用了String对象的内置includes()方法。我们定义了字符串并使用includes()方法来检查字符串是否包含特定的单词或子字符串。
<html>
<body>
<h2>Using the <i>includes() method without polyfill </i> in JavaScript</h2>
<div id = "content"> </div>
<script>
let content = document.getElementById('content');
let str = "You are welcome on TutorialsPoint's website. Hello users! How are you?";
let isWelcome = str.includes('welcome');
content.innerHTML += "The original string: " + str + "<br>";
content.innerHTML += "The string includes welcome word? " + isWelcome + "<br>";
let isJavaScript = str.includes('javaScript');
content.innerHTML += "The string includes JavaScript word? " + isJavaScript + "<br>";
</script>
</body>
</html>
示例2(包括Polyfill的includes()方法)
在上面的示例中,我们使用了内置的includes()方法。在这个示例中,我们将定义includes()方法的Polyfill。如果任何浏览器不支持includes()方法,它将执行用户定义的includes()方法。
在这里,我们将includes()方法添加到字符串对象的原型中。在函数中,如果搜索字符串是正则表达式类型,我们会抛出错误。另外,’pos’参数是可选的,所以如果用户不传递它,我们将认为它为零。最后,使用indexof()方法来检查一个字符串是否包含该单词,并根据结果返回一个布尔值。
<html>
<body>
<h2>Using the <i>includes() method with polyfill </i> in JavaScript</h2>
<div id = "content"> </div>
<script>
let content = document.getElementById('content');
String.prototype.includes = function (str, pos) {
// first, check whether the first argument is a regular expression
if (str instanceof RegExp) {
throw Error("Search string can't be an instance of regular expression");
}
// second parameter is optional. So, if it isn't passed as an argument, consider it zero
if (pos === undefined) {
pos = 0;
}
content.innerHTML += "The user-defined includes method is invoked! <br>"
// check if the index of the string is greater than -1. If yes, string includes the search string.
return this.indexOf(str, pos) !== -1;
};
let str = "This is a testing string. Use this string to test includes method.";
content.innerHTML += `The original string is "` + str +`" <br>`;
let isTesting = str.includes('testing');
content.innerHTML += "The string includes testing word? " + isTesting + "<br>";
let isYour = str.includes('your');
content.innerHTML += "The string includes your word? " + isYour + "<br>";
</script>
</body>
</html>
示例3(实现filter()方法的polyfill)
我们在下面的示例中实现了filter()方法的polyfill。首先,我们确保引用数组不为null,并且callback是函数类型。之后,我们遍历数组,并为每个数组值执行回调函数。如果回调函数返回true,则将其推送到输出数组中。最后,我们返回包含筛选值的输出数组。
<html>
<body>
<h2>Using the <i> filter() method with polyfill </i> in JavaScript</h2>
<div id = "content"> </div>
<script>
let content = document.getElementById('content');
Array.prototype.filter = function (callback) {
// check if the reference array is not null
if (this === null) throw new Error;
// check that callback is a type of function
if (typeof callback !== "function") throw new Error;
var output = [];
// iterate through array
for (var k = 0; k < this.length; k++) {
// get value from index k
var val = this[k];
// call the callback function and, based on a returned boolean value, push the array value in the output array
if (callback.call(this, val, k)) {
output.push(val);
}
}
return output;
};
function getDivisibleBy10(val, k) {
// return true if val is divisible by 10.
if (val % 10 == 0) {
return true;
}
return false;
}
let array = [10, 20, 40, 65, 76, 87, 90, 80, 76, 54, 32, 23, 65, 60];
let filtered = array.filter(getDivisibleBy10);
content.innerHTML += "The original array is " + JSON.stringify(array) + "<br>";
content.innerHTML += "The filtered array is " + JSON.stringify(filtered) + "<br>";
</script>
</body>
</html>
这个教程教我们实现了includes()和filter()方法的polyfill。然而,用户可以使用if-else语句来检查浏览器是否支持特定方法。如果不支持,则执行用户定义的方法,否则使用内置方法。