发布于 2024 年 2 月 26 日,星期一
标题“this 之谜揭底:从浅入深理解 JavaScript 中的 this 关键字(一)”揭示了JavaScript中this关键字的复杂性和重要性。this关键字在JavaScript中并非固定指向某个对象,而是根据函数调用方式动态绑定。理解this的关键在于识别函数的调用上下文,包括普通函数调用、方法调用、构造函数调用和箭头函数调用等不同场景。每种调用方式都会影响this的指向,导致其行为多变且难以捉摸。深入理解this的绑定规则,有助于开发者避免常见的陷阱,编写更清晰、可维护的代码。
系列首发于公众号『非同质前端札记』https://mp.weixin.qq.com/s?__biz=MzkyOTI2MzE0MQ==&mid=2247485576&idx=1&sn=5ddfe93f427f05f5d126dead859d0dc8&chksm=c20d73c2f57afad4bbea380dfa1bcc15367a4cc06bf5dd0603100e8bd7bb317009fa65442cdb&token=1071012447&lang=zh_CN#rd ,若不想错过更多精彩内容,请“星标”一下,敬请关注公众号最新消息。
function identify() { return this.name.toUpperCase();}function speak() { var greeting = "Hello, I'm " + identify.call( this ); console.log( greeting );}var me = { name: "Kyle"};var you = { name: "Reader"};identify.call( me ); // KYLEidentify.call( you ); // READERspeak.call( me ); // Hello, 我是 KYLEspeak.call( you ); // Hello, 我是 READER
function identify(context) { return context.name.toUpperCase();}function speak(context) { var greeting = "Hello, I'm " + identify( context ); console.log( greeting );}identify( you ); // READERspeak( me ); //hello, 我是 KYLE
function foo(num) { console.log( "foo: " + num ); // 记录 foo 被调用的次数 this.count++;}foo.count = 0;var i;for (i=0; i<10; i++) { if (i > 5) { foo( i ); }}// foo: 6// foo: 7// foo: 8// foo: 9// foo 被调用了多少次?console.log( foo.count ); // 这里会输出多少次呢?
function foo(num) { console.log( "foo: " + num );// 记录 foo 被调用的次数 this.count++;}foo.count = 0;var i;for (i=0; i<10; i++) { if (i > 5) { foo( i ); }}// foo: 6// foo: 7// foo: 8// foo: 9// foo 被调用了多少次?console.log( foo.count ); // 0// 为什么会输出 0 呢?// 从字面意思来看,上面的函数执行了 4 此,理应来说, foo.count 应该是 4 才对。
function foo(num) { console.log( "foo: " + num ); // 记录 foo 被调用的次数 data.count++;}var data = { count: 0};var i;for (i=0; i<10; i++) { if (i > 5) { foo( i ); }}// foo: 6// foo: 7// foo: 8// foo: 9// foo 被调用了多少次?console.log( data.count ); // 4
arguments.callee
来引用当前正在运行的函数对象。function foo(num) { console.log( "foo: " + num ); // 记录 foo 被调用的次数 foo.count++;}foo.count=0var i;for (i=0; i<10; i++) { if (i > 5) { foo( i ); }}// foo: 6// foo: 7// foo: 8// foo: 9// foo 被调用了多少次?console.log( foo.count ); // 4
call, bind, apply
关键字来实现。function foo(num) { console.log( "foo: " + num ); // 记录 foo 被调用的次数 // 注意,在当前的调用方式下(参见下方代码),this 确实指向 foo this.count++;}foo.count = 0;var i;for (i=0; i<10; i++) { if (i > 5) { // 使用 call(..) 可以确保 this指向函数对象 foo 本身 foo.call( foo, i ); }}// foo: 6// foo: 7// foo: 8// foo: 9// foo 被调用了多少次?console.log( foo.count ); // 4
function foo() { var a = 2; this.bar();}function bar() { console.log( this.a );}foo();// 这段代码你一共能发现几处错误?并且报错后会抛出什么?
function foo() { var a = 2; this.bar(); // bar(); // 当前方式会根据词法作用域的规则来查找 bar() 方法,并且调用它}function bar() { console.log(this.a); // ReferenceError: a is not defined // console.log(a); // 这种方式也不行,因为函数会创建一个块作用域,所以无法通过 bar 的作用域访问到上层 foo 作用域。}foo(); // TypeError: this.bar is not a function
首先,这段代码试图通过 this.bar() 来引用 bar() 函数。这是绝对不可能成功的,我们之后会解释原因。调用 bar() 最自然的方法是省略前面的 this,直接使用词法引用标识符。
此外,编写这段代码的开发者还试图使用 this 联通 foo() 和 bar() 的词法作用域,从而让bar() 可以访问 foo() 作用域里的变量 a。这是不可能实现的,你不能使用 this 来引用一个词法作用域内部的东西。
Q:(question)
R:(result)
A:(attention matters)
D:(detail info)
S:(summary)
Ana:(analysis)
T:(tips)