文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Javascript实现call,bind,apply的代码怎么写

2023-06-29 06:15

关注

这篇文章主要介绍了Javascript实现call,bind,apply的代码怎么写的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇Javascript实现call,bind,apply的代码怎么写文章都会有所收获,下面我们一起来看看吧。

检查当前调用的是否为函数

如果当前没有传入指向的this,则赋值为window

将fn指向当前调用的函数

获取传入的参数

将参数传入fn进行调用

将对象上的fn删除

返回结果

  //普通call的实现  function hello(){      console.log('hello 我是'+this.name);  };  let person = {      name:'krys'  };  var name = 'liang';//只有var的变量属于window  hello();// 'hello 我是liang'  hello.call(person);//'hello 我是krys'  hello.call();//'hello 我是liang'  let person2 = {      name:'lwl'  }  Function.prototype.mycall = function(context){      //不传入参数的时候,默认为window      if(typeof this !== "function"){          throw new TypeError('Error');      }      context = context || window;      context.fn = this;//fn就是上面的hello方法      const args = [...arguments].slice(1);//第一个参数不要      const result = context.fn(...args);//把剩下的其他参数传给hello      delete context.fn;      return result;  }  hello.mycall(person2);
function getParams(){        console.log('我是',this.name,'获取一些参数',...arguments);    }    let person3 = {        name:'hhh'    };    getParams.apply(person3,['hello','world'])    Function.prototype.myApply = function(context){        if(typeof this !== "function"){            throw new TypeError()        }        context = context || window;        context.fn = this;        let result;        if(arguments[1]){            //如果有传入参数数组            console.log(arguments[1])            result  = context.fn(...arguments[1]);        }else{            result  = context.fn();        }        delete context.fn;        return result;    }    getParams.myApply({name:'llll'},['jjj','kkkk','llll']);
function getParams(){        console.log('我是',this.name,'获取一些参数',...arguments);    }    let person3 = {        name:'hhh'    };    let person4 = {        name:'tttt'    };    getParams.bind(person3,'hello','world')    getParams.bind(person4,'hello','world')('jjj','kkk');    Function.prototype.myBind = function(context){        if(typeof this !== "function"){            throw new TypeError()        }        context = context || window;        const _that = this;        const args = [...arguments].slice(1);        return function F(){            if(this instanceof F){                return new _that(...args,...arguments);//这里的arguments是上面的jjj kkk            }            return _that.apply(context,args.concat(...arguments));//这里的arguments是上面的jjj kkk        }    }    getParams.myBind({name:'llll'},'jjj','kkkk','llll')('hhhhllll');

关于“Javascript实现call,bind,apply的代码怎么写”这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对“Javascript实现call,bind,apply的代码怎么写”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯