20-普通函数(this指向)

this的指向在函数定义的时候是确定不了的,只有函数执行的时候才能确定this到底指向谁。this 指向最后调用它的那个对象。

一. 函数调用模式(直接调用)

当一个函数并非一个对象的属性时,那么它就是被当做函数来调用的。在此种模式下,this被绑定为全局对象,在浏览器环境下就是window对象。
注意!!!直接调用并不是指在全局作用域下进行调用,在任何作用域下,直接通过 函数名(...) 来对函数进行调用的方式,都称为直接调用。

function func() {
    let str = "hello";
    console.log(this);  // this -> window
    console.log(this.str);  //undefined
}
func();     // 全局作用域下的直接调用
(function (_global) {
    // 通过 IIFE 限定作用域
    function func() {
       console.log(this);  // this -> window
       console.log(this.str);  //undefined
    }
    func();   // 非全局作用域下的直接调用
})();
二. 方法调用模式(谁调用的this就指向谁)

当函数被保存为一个对象的属性时,它就可称为这个对象的方法。当一个方法被调用时,this被绑定到这个对象上。如果调用表达式包含一个提取属性的动作(. 或 []),那么它被称为方法调用。

  1. 单个对象时:
let obj = {
    userName:"zhangsan",
    sayName:function(){
        console.log(this.userName);   //zhangsan
        console.log(this);    //this -> obj
    }
}
obj.sayName()

这里的this指向的对象是obj,因为调用这个sayName()函数是通过obj.sayName()执行的。

  1. 对象嵌套时:
let o = {
    userName: "zhangsan",
    b: {
        age:18,
        sayName: function () {
            console.log(this.userName);   //undefined
            console.log(this.age);     //18
            console.log(this);      //this -> b
        }
    }
}
o.b.sayName()

因为是o.b调用的这个函数,所以指向b这个对象,所以打印userName是undefined。

  1. 赋给全局变量
var userName = "lisi";
let obj = {
    userName: "zhangsan",
    obj_1: {
        age:18,
        sayName: function () {
            console.log(this.userName);   //lisi
            console.log(this.age);     //undefined
            console.log(this);      //this -> widow
        }
    }
}
let t = obj.obj_1.sayName;
t();

因为t是全局变量,在全局环境下执行,this指向window,所以打印userName是外边的全局变量,而此时this.age打印undefined。

三. 构造函数调用模式

new 调用一个构造函数,会创建一个新对象,而其中的 this 就指向这个新对象。

function Func(){
    this.str = "hello";
    console.log(this)   //this ===> Func {str: "hello"}
}

let a = new Func(); 
console.log(a);   //a ===> Func {str: "hello"}
console.log(a.str);   //hello

构造函数中如果加入了return的话,分两种情况:

  1. return的是五种简单数据类型:String,Number,Boolean,Null,Undefined。
    这种情况下,忽视return值,依然返回this对象
//Number
function Func(){
    this.str = "hello"
    console.log(this)   //this -> Func {str: "hello"}
    return 1
}
let a = new Func();  
console.log(a);       // a -> Func {str: "hello"}
console.log(a.str);   //hello

//String
function Func(){
    this.str = "hello"
    console.log(this)   // a -> Func {str: "hello"}
    return "abc"
}
let a = new Func();  
console.log(a.str) //hello

//Boolean
function Func(){
    this.str = "hello"
    console.log(this)   //this -> Func {str: "hello"}
    return false
}
let a = new Func();  
console.log(a.str) //hello

//null
function Func(){
    this.str = "hello"
    console.log(this)   // a -> Func {str: "hello"}
    return null
}
let a = new Func();  
console.log(a.str) //hello

//undefined
function Func(){
    this.str = "hello"
    console.log(this)   // this -> (Func {str: "hello"})
    return undefined
}
let a = new Func();  
console.log(a.str);   //hello
  1. return的是Object。
    这种情况下,不再返回this对象,而是返回return语句的返回值。

//数组
function Func(){
    this.str = "hello"
    console.log(this)   //this -> Func {str: "hello"}
    return [1,2]
}
let a = new Func();  
console.log(a)      //a -> [1,2]
console.log(a[0])   //1
console.log(a.str)  //undefined
                        
//对象
function Func(){
    this.str = "hello"
    console.log(this)   //this -> Func {str: "hello"}
    return {user:"zhangsan",age:18}
}

let a = new Func();  
console.log(a);      //a ->  {user:"zhangsan",age:18}
console.log(a.age);  //18
console.log(a.str);  //undefined

//函数
function Func(){
    this.str = "hello"
    console.log(this)   //this -> Func {str: "hello"}
    return function(){
        
    }
}
let a = new Func();  
console.log(a)    //ƒ (){}
四、call、apply、bind
  1. call()
    通过在call方法的第一个参数可以改变this的指向,this指向第一个参数。
 var a = {
    user: "zhangsan",
    fn: function () {
        console.log(this.user); //zhansan
        console.log(this)   //this -> a
    }
}
var b = a.fn;
b.call(a);

call()方法除了第一个参数以外还可以添加多个参数

var a = {
    user:"zhangsan",
    fn:function(a,b){
        console.log(this.user); //zhangsan
        console.log(a+b); //3
    }
}
var b = a.fn;
b.call(a,1,2);
  1. apply()
    apply方法和call方法有些相似,它也可以改变this的指向
var a = {
    user:"zhangsan",
    fn:function(){
        console.log(this.user); //zhangsan
    }
}
var b = a.fn;
b.apply(a);

同样apply也可以有多个参数,但是不同的是,第二个参数必须是一个数组

var a = {
    user:"zhangsan",
    fn:function(a,b){
        console.log(this.user); //zhangsan
        console.log(a+b); //11
    }
}
var b = a.fn;
b.apply(a,[10,1]);

注意如果call和apply的第一个参数写的是null,那么this指向的是window对象。

  1. bind()
    bind方法和call、apply方法有些不同,但是不管怎么说它们都可以用来改变this的指向。

区别:

var a = {
    user:"zhangsan",
    fn:function(){
        console.log(this.user);
    }
}
var b = a.fn;
b.bind(a);

发现控制台并没有打印,对,这就是bind和call、apply方法的不同,实际上bind方法返回的是一个修改过后的函数。

var a = {
    user:"zhangsan",
    fn:function(){
        console.log(this.user);
    }
}
var b = a.fn;
var c = b.bind(a);
console.log(c); //function() {}

我们可以执行一下函数c看看,能不能打印出对象a里面的user

var a = {
    user:"zhangsan",
    fn:function(){
        console.log(this.user); //zhangsan
    }
}
var b = a.fn;
var c = b.bind(a);
c();

ok,同样bind也可以有多个参数,并且参数可以执行的时候再次添加,但是要注意的是,参数是按照形参的顺序进行的。

var a = {
    user:"zhangsan",
    fn:function(a,b,c){
        console.log(this.user); //zhangsan
        console.log(a,b,c); //10 1 2
    }
}
var b = a.fn;
var c = b.bind(a,10);
c(1,2);

总结:call和apply都是改变上下文中的this并立即执行这个函数,bind方法可以让对应的函数想什么时候调就什么时候调用,并且可以将参数在执行的时候添加。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,293评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,604评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,958评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,729评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,719评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,630评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,000评论 3 397
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,665评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,909评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,646评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,726评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,400评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,986评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,959评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,197评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,996评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,481评论 2 342

推荐阅读更多精彩内容

  • 1.概念 在JavaScript中,this 是指当前函数中正在执行的上下文环境,因为这门语言拥有四种不同的函数调...
    BluesCurry阅读 1,120评论 0 2
  • 函数和对象 1、函数 1.1 函数概述 函数对于任何一门语言来说都是核心的概念。通过函数可以封装任意多条语句,而且...
    道无虚阅读 4,521评论 0 5
  • 涵义 this关键字是一个非常重要的语法点。毫不夸张地说,不理解它的含义,大部分开发任务都无法完成。 首先,thi...
    许先生__阅读 546评论 0 4
  • 转载自:https://wangdoc.com/javascript/oop/this.html 1,涵义 thi...
    团子家族_方糖咖啡阅读 501评论 0 1
  • 涵义 this可以用在构造函数之中,表示实例对象。除此之外,this还可以用在别的场合。但不管是什么场合,this...
    oWSQo阅读 519评论 0 1