原生js如何实现call,apply以及bind
网络编程 2021-07-04 14:07www.168986.cn编程入门
这篇文章主要介绍了原生js实现call,apply以及bind,帮助大家更好的理解和学习使用JavaScript,感兴趣的朋友可以了解下
1、实现call
步骤
- 将函数设为对象的属性;
- 指定this到函数,并传入给定参数执行函数;
- 执行之后删除这个函数;
- 如果不传入参数,默认指向window;
Function.prototype.mycall = function (context, ...args) { //判断是否为函数,如果不是函数,则报错 if (typeof this !== "function") { throw new Error("不是函数"); } context = context || window; context.fn = this; const res = context.fn(...args); delete context.fn; return res; }
测试代码
var name = "李辉", age = 25; var obj = { name: "周果", objAge: this.age, myFun: function (fm, to) { console.log(`名字${this.name},年龄${this.age},来自${fm},去往:${to}`) } }; var person = { name: "弟弟", age: 12, }; Function.prototype.mycall = function (context, ...args) { //判断是否为函数,如果不是函数,则报错 if (typeof this !== "function") { throw new Error("不是函数"); } context = context || window; context.fn = this; const res = context.fn(...args); delete context.fn; return res; } obj.myFun.mycall(person, "成都", "仁寿"); //名字弟弟,年龄12,来自成都,去往:仁寿
2、实现apply
Function.prototype.myApply = function (context, ...args) { //判断是否为函数,如果不是函数,则报错 if (typeof this !== "function") { throw new Error("不是函数"); } context = context || window; context.fn = this; args = args && args[0] || []; const result = context.fn(...args); delete context.fn; return result; }
测试代码
obj.myFun.myApply(person, ["成都", "仁寿"]); //名字弟弟,年龄12,来自成都,去往:仁寿
3、实现bind
bind()方法主要就是将函数绑定到某个对象,bind()会创建一个函数,函数体内的this对象的值会被绑定到传入bind()中的第一个参数的值。
方法1使用apply
Function.prototype.myBind = function () { let self = this; //保存原函数 let context = [].shift.call(arguments); //保存需要绑定的this上下文 let args = [...arguments]; //将传入的剩余参数转换成数组 return function () { //返回一个新的函数 self.apply(context,[].concat.call(args,[...arguments])); } }
ES6简化一下
Function.prototype.myBind = function (context, ...args1) { return (...args2) => { //返回箭头函数, this绑定调用这个方法的函数对象 context = context || window; return this.apply(context, args1.concat(args2));//合并参数 } }
方法2不使用call以及apply
将上面的代码和js手写实现apply的代码合并一下
Function.prototype.myBind = function (context, ...args1) { return (...args2) => { //返回箭头函数, this绑定调用这个方法的函数对象 context = context || window; context.fn = this; const args = args1.concat(args2); const res = context.fn(...args); delete context.fn; return res; } }
测试代码
obj.myFun.myBind(person, "成都", "仁寿")();//名字弟弟,年龄12,来自成都,去往:仁寿
以上就是原生js如何实现call,apply以及bind的详细内容,更多关于js实现call,apply以及bind的资料请关注狼蚁SEO其它相关文章!
上一篇:vue实现图形验证码
下一篇:vue项目实现图形验证码
编程语言
- 甘肃哪有关键词排名优化购买方式有哪些
- 甘肃SEO如何做网站优化
- 河南seo关键词优化怎么做电话营销
- 北京SEO优化如何做QQ群营销
- 来宾百度关键词排名:提升您网站曝光率的关键
- 卢龙关键词优化:提升您网站排名的策略与技巧
- 山东网站优化的注意事项有哪些
- 四川整站优化怎样提升在搜索引擎中的排名
- 疏附整站优化:提升网站性能与用户体验的全新
- 海南seo主要做什么工作售后服务要做到哪些
- 荣昌百度网站优化:提升您网站的搜索引擎排名
- 河北seo网站排名关键词优化如何做SEO
- 江西优化关键词排名推广售后保障一般有哪些
- 古浪SEO优化:提升你的网站可见性
- 西藏网站排名优化怎么把网站排名在百度首页
- 如何提升阳东百度快照排名:详尽指南