📅  最后修改于: 2020-10-25 11:49:29             🧑  作者: Mango
JavaScript的静态Reflect.apply()方法用于使用指定的参数调用函数。
Reflect.apply(target, thisArgument, argumentsList)
target:是要调用的目标函数。
thisArgument:这是为目标调用提供的this的值。
ArgumentsList:这是一个类似数组的对象,它指定应调用目标的参数。
使用指定的this值和参数调用给定目标函数的结果。
如果目标不可调用,则此方法将引发TypeError。
function g (a, b) {
this.x = a;
this.y = b;
}const obj = {};
Reflect.apply ( g , obj, [33,44] );
console.log( obj );
输出:
Object { x: 33, y: 44 }
var whatsThis = function() { console.log(this); }
Reflect.apply(whatsThis, 'hello', []);
// Call a function that takes a variable number of args
var numbers = [3, 20, 1, 55];
console.log(Reflect.apply(Math.max, undefined, numbers));
输出:
"hello"
55
console.log(Reflect.apply(Math.floor, undefined, [45]));
console.log(Reflect.apply(String.fromCharCode, undefined, [104, 101,103,105]));
console.log(Reflect.apply(RegExp.prototype.exec, /ab/, ['confabulation']).index);
console.log(Reflect.apply(''.charAt, 'Rahul', [3]));
输出:
45
"hegi"
4
"u"