作者:Jaaaaasonnv_116 | 来源:互联网 | 2023-10-16 09:17
Function.prototype.applyfunction(x){xx||{};防备this为nullx[fn]this;varlistarguments[1]||[];va
Function.prototype.apply=function(x){
x = x || {};//防备this为null
x['fn'] = this;
var list = arguments[1] || [];
var args = '';//参数列表
var type;
for (var i = 0; i if (typeof list[i] === 'string') {//参数是字符串,须要在双方加引号,由于在拼接参数的时刻会被丢掉
type = '"'+list[i] + '"';
}
else if (typeof list[i] === 'function') {//参数是函数的话,"反编译"出函数的代码
type = list[i].toString();
}
else if (typeof list[i] === 'object' ) {
if (/function Array()/.test(list[i]['constructor'])) {//参数是数组则在数组双方加上[,]
type = "[" + list[i] + "]";
} else {
type = JSON.stringify(list[i])//对象的话,json化,然后实行的时刻反json化
}
} else {
type = list[i];//数字范例
}
args = args + type +',';
}
args = args.slice(0,args.length-1);//去掉末了的逗号
var q = new Function('var x = arguments[0];x.fn('+args+')')//new Function的时刻作用域是自力的,无法访问call内里的x,所以须要传进去
q(x)
}
function parse_Array_Object(arg) {
//能够npm install traverse-deep和连系js的map函数举行响应处置惩罚,主如果遍历arg的每个元素,举行范例推断,然后返回响应的字符串
//to do ..
}
function a(a){
console.log(this,arguments)
}
a.apply(null,[1,2])