您好,登錄后才能下訂單哦!
這篇文章主要介紹了es6有arguments嗎的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇es6有arguments嗎文章都會有所收獲,下面我們一起來看看吧。
es6有arguments,但箭頭函數是不識別arguments的,所以用rest(剩余參數)來取代arguments;剩余參數直接就固定到數組里了,而arguments是類數組(本質是個對象),還需要轉換。剩余參數語法允許將一個不定數量的參數表示為一個數組,不定參數定義方式,這種方式很方便的去聲明不知道參數情況下的一個函數。
1. 說明
es6中箭頭函數是不識別arguments的。所以用rest來取代arguments。
ES6之后,都用剩余參數代替arguments了,剩余參數直接就固定到數組里了,而arguments是類數組(本質是個對象),還需要轉換。
2. arguments的常用操作
(1). 獲取參數長度
(2). 根據索引獲取參數
(3). 獲取當前arguments所在的函數
代碼分享:
{
console.log("----------------1. arguments常用操作-------------------");
function Test1() {
// arguments長什么樣?---本質是一個對象
// {
// '0': 1,
// '1': 2,
// '2': 3,
// '3': 4,
// '4': 5,
// '5': 6,
// '6': 7,
// '7': 8
// }
console.log(arguments);
// 常見的對arguments的操作是三個
// 1.獲取參數的長度
console.log(arguments.length);
// 2.根據索引值獲取某一個參數
console.log(arguments[0]);
console.log(arguments[1]);
console.log(arguments[2]);
// 3.callee獲取當前arguments所在的函數
console.log(arguments.callee);
}
//調用
Test1(1, 2, 3, 4, 5, 6, 7, 8);
}
3. 將arguments轉換成數組
{
console.log("----------------2. 將arguments轉換成數組-------------------");
function Test2() {
// 方案1-自己遍歷
{
let newArray = [];
for (let i = 0; i < arguments.length; i++) {
newArray.push(arguments[i]);
}
console.log(newArray);
}
// 方案2-Array.prototype.slice將arguments轉成array
{
let newArray2 = Array.prototype.slice.call(arguments);
console.log(newArray2);
}
// 方案3-ES6語法 Array.From
{
console.log(Array.from(arguments));
}
// 方案4-ES6語法 剩余參數
{
console.log([...arguments]);
}
}
//調用
Test2(1, 2, 3, 4, 5, 6, 7, 8);
}
4. 箭頭函數中沒有arguments
{
console.log("----------------3. 箭頭函數中沒有arguments-------------------");
let Test3 = () => {
console.log(arguments);
};
Test3(1, 2, 3, 4);
}
1. 剩余參數(Rest Parameter)
剩余參數語法允許我們將一個不定數量的參數表示為一個數組,不定參數定義方式,這種方式很方便的去聲明不知道參數情況下的一個函數。
代碼分享
{
console.log("-----------------1. 剩余參數---------------------");
function sum1(...nums) {
console.log(nums);
console.log(
nums.reduce((preValue, currentValue) => preValue + currentValue, 0)
); //求和
}
//調用
sum1(1, 2); //[1,2]
sum1(1, 2, 3); //[1,2,3]
sum1(1, 2, 3, 4); //[1,2,3,4]
function sum2(num1, num2, ...nums) {
console.log(nums);
console.log(
nums.reduce(
(preValue, currentValue) => preValue + currentValue,
num1 + num2
)
); //求和
}
//調用
sum2(1, 2); //[]
sum2(1, 2, 3); //[3]
sum2(1, 2, 3, 4); //[3,4]
}
2. 展開運算符(Spread Operator)
把固定的數組內容“打散”到對應的參數。
代碼分享:
{
console.log("-----------------2. 展開運算符---------------------");
function sum1(num1, num2) {
console.log(num1 + num2);
}
// 調用
let arry1 = [10, 20];
sum1(...arry1);
function sum2(num1, num2, num3) {
console.log(num1 + num2 + num3);
}
//調用
let arry2 = [10, 20, 30];
sum2(...arry2);
}
總結:
1. Spread Operator 和 Rest Parameter 是形似但相反意義的操作符,簡單的來說 Rest Parameter 是把不定的參數“收斂”到數組,而 Spread Operator 是把固定的數組內容“打散”到對應的參數。
2. Rest Parameter 用來解決函數參數不確定的場景,Spread Operator 用來解決已知參數集合應用到固定參數的函數上
1. apply 和 call都是為了改變被調用函數中this的指向, 同時立即執行該函數
2. bind也是為了改變函數中this的指向,但它返回的是一個函數,需要被調用才能執行
3. apply 和 call的第一個參數都是傳入綁定到對象,用于改變this指向,但是
(1). apply是將需要傳入函數的參數放到一個數組里,傳入到第二個參數的位置
(2). call是從第2,3,4.....位置依次傳入需要的參數
4. bind 后續傳入參數的形式和call相同,從第2,3,4.....位置依次傳入需要的參數,bind返回的是一個函數,需要再次調用。
代碼分享:
// 案例1--隱式綁定
{
console.log("----------------案例1--------------------");
let name = "ypf1";
let age = 18;
let obj = {
name: "ypf2",
myAge: this.age,
getMsg: function () {
console.log(this.name, this.age);
},
};
// 調用
console.log(obj.myAge); //undefined (隱式綁定,this指向obj)
obj.getMsg(); //ypf2,undefined (隱式綁定,this指向obj)
}
//案例2--只綁定,不傳參
/*
注意1個細節,bind后面多了個(),bind返回的是一個新函數,必須調用才能執行
*/
{
console.log("----------------案例2--------------------");
let name = "ypf1";
let age = 18;
let obj = {
name: "ypf2",
myAge: this.age,
getMsg: function () {
console.log(this.name, this.age);
},
};
let obj2 = { name: "ypf3", age: 35 };
// 調用
obj.getMsg.apply(obj2); //ypf 35 (apply顯式綁定優先級高于隱式綁定,this指向obj2)
obj.getMsg.call(obj2); //ypf 35 (call顯式綁定優先級高于隱式綁定,this指向obj2)
obj.getMsg.bind(obj2)(); //ypf 35 (bind顯式綁定優先級高于隱式綁定,this指向obj2)
}
// 案例3--傳遞參數
/*
apply傳遞數組
call和bind都是依次寫參數
特別注意:bind可以多次傳遞參數
*/
{
console.log("----------------案例3--------------------");
let name = "ypf1";
let age = 18;
let obj = {
name: "ypf2",
myAge: this.age,
getMsg: function (msg1, msg2) {
console.log(this.name, this.age, msg1, msg2);
},
};
let obj2 = { name: "ypf3", age: 35 };
//調用
obj.getMsg.apply(obj2, ["消息1", "消息2"]);
obj.getMsg.call(obj2, "消息1", "消息2");
//bind用法1
obj.getMsg.bind(obj2, "消息1", "消息2")();
//bind用法2--多次傳參
let fn1 = obj.getMsg.bind(obj2, "消息1");
fn1("消息2");
}
1. apply
(1). xxFn.ypfapply(), 在ypfapply中,this指向xxFn函數
(2). 需要實現出入 null 或 undefined的時候,this指向window
(3). 使用 delete 可以刪除對象的某個屬性
(4). 通過Function.prototype原型添加
(5). || 用法
argArray = argArray?argArray:[] 等價于
argArray = argArray || []
代碼分享:
/**
* 利用js手寫call函數
* @param {Object|null|undefined} thisArg 待綁定的對象
* @param {Array} argArray 調用函數的數組參數
*/
Function.prototype.ypfapply = function (thisArg, argArray) {
// 1. this指向調用函數
let fn = this;
// 2. 獲取傳遞參數
thisArg = thisArg != null && thisArg != undefined ? Object(thisArg) : window;
//3. 賦值函數并調用
thisArg.fn1 = fn;
argArray = argArray || [];
let result = thisArg.fn1(...argArray);
//4. 刪除thisArg綁定的屬性
delete thisArg.fn1;
//5.返回結果
return result;
};
// 測試
function test1() {
console.log(this);
}
function sum(num1, num2) {
console.log(this, num1, num2);
return num1 + num2;
}
// 1. 利用系統自帶的apply測試
console.log("----------1.利用系統自帶的call測試---------------");
test1.apply(null);
let result1 = sum.apply("ypf1", [10, 20]);
console.log(result1);
// 2. 利用自己寫的測試
console.log("----------2.利用自己寫的測試---------------");
test1.ypfapply(null);
let result2 = sum.ypfapply("ypf1", [10, 20]);
console.log(result2);
2. call
(1). xxFn.ypfcall(), 在ypfcall中,this指向xxFn函數
(2). 需要實現出入 null 或 undefined的時候,this指向window
(3). 使用 delete 可以刪除對象的某個屬性
(4). 通過Function.prototype原型添加
代碼分享:
/**
* 利用js手寫call函數
* @param {Object|null|undefined} thisArg 待綁定的對象
* @param {...any} args 調用函數的參數
*/
Function.prototype.ypfcall = function (thisArg, ...args) {
// 1. 指向待調用的函數
let fn = this;
//2. 獲取綁定對象
thisArg = thisArg != null && thisArg != undefined ? Object(thisArg) : window;
//3.調用函數
thisArg.fn1 = fn;
let result = thisArg.fn1(...args);
//4. 刪除多余的屬性
delete thisArg.fn1;
//5. 最終返回
return result;
};
// 測試
function test1() {
console.log(this);
}
function sum(num1, num2) {
console.log(this, num1, num2);
return num1 + num2;
}
// 1. 利用系統自帶的call測試
console.log("----------1.利用系統自帶的call測試---------------");
test1.call(undefined);
let result1 = sum.call("ypf1", 10, 20);
console.log(result1);
// 2. 利用自己寫的測試
console.log("----------2.利用自己寫的測試---------------");
test1.ypfcall(undefined);
let result2 = sum.ypfcall("ypf1", 10, 20);
console.log(result2);
3. bind
(1). bind和call相同,接收到參數是依次傳遞,另外bind返回的是函數!!
(2). xxFn.ypfbind(), 在ypfbind中,this指向xxFn函數
(3). 需要實現出入 null 或 undefined的時候,this指向window
(4). 使用 delete 可以刪除對象的某個屬性
(5). 由于bind返回的是函數,所以需要聲明1個函數, 并返回這個函數
函數內部核心點:由于bind可以一次性傳遞參數,也可以多次傳遞參數,所以需要對兩個參數進行一下合并
代碼分享:
Function.prototype.ypfbind = function (thisArg, ...argArray) {
// 1. this指向調用的函數
let fn = this;
// 2. 處理綁定參數
thisArg = thisArg != null && thisArg != undefined ? Object(thisArg) : window;
// 3. 聲明一個函數
function DyFun(...argArray2) {
// 綁定函數
thisArg.fn1 = fn;
// 合并參數
let finalArgArray = [...argArray, ...argArray2];
// 調用函數
let result = thisArg.fn1(...finalArgArray);
// 刪除用完的屬性
delete thisArg.fn1;
// 返回結果
return result;
}
//4. 返回一個函數
return DyFun;
};
// 測試
function test1() {
console.log(this);
}
function sum(num1, num2) {
console.log(this, num1, num2);
return num1 + num2;
}
// 1. 利用系統自帶的bind測試
console.log("----------1. 利用系統自帶的bind測試---------------");
test1.bind(undefined)();
let result1 = sum.bind("ypf1", 10, 20);
console.log(result1());
let result2 = sum.bind("ypf2", 10);
console.log(result2(30));
// 2. 利用自己寫的測試
console.log("----------2.利用自己寫的測試---------------");
test1.bind(undefined)();
let result3 = sum.bind("ypf1", 10, 20);
console.log(result3());
let result4 = sum.bind("ypf2", 10);
console.log(result4(30));
關于“es6有arguments嗎”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“es6有arguments嗎”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。