热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

js的apply函数"源码”

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])

推荐阅读
author-avatar
Jaaaaasonnv_116
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有