this != JavaScript 中的 this (好吧,有时......)

发布于 2024-12-12 06:30:13 字数 480 浏览 0 评论 0原文

示例 1

var Reptile = function () {
  var reptile = this;
   this.showBla = function() {
       alert(reptile.bla);
   }
}

var turtle = new Reptile();
turtle.bla = 'whatever';
turtle.showBla();

示例 2

var Reptile = function () {
   this.showBla = function() {
       alert(this.bla);
   }
}

var turtle = new Reptile();
turtle.bla = 'whatever';
turtle.showBla();

示例 1 合法吗?因为有时直接在构造函数中定义“this”似乎把事情搞砸了......?!?

Example 1

var Reptile = function () {
  var reptile = this;
   this.showBla = function() {
       alert(reptile.bla);
   }
}

var turtle = new Reptile();
turtle.bla = 'whatever';
turtle.showBla();

Example 2

var Reptile = function () {
   this.showBla = function() {
       alert(this.bla);
   }
}

var turtle = new Reptile();
turtle.bla = 'whatever';
turtle.showBla();

Is example 1 legit? As it sometimes seems to screw things over to define "this" directly in the constructor...?!?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

纸短情长 2024-12-19 06:30:13

是的,它是合法的,并且在您可能需要在函数内定义一个函数并且可以以“this”将指向其他内容的方式调用的情况下很有用。书籍建议将此变量命名为 var that = this;

Yes, it is legit and is useful in cases where you may need to define a function inside a function that may be invoked in a way there "this" will pointer to something else. Books recommend naming this variable var that = this;

逆蝶 2024-12-19 06:30:13

示例 1 是维护对当前实例的引用的常见模式。在回调情况下,例如:

setTimeout(turtle.showBla, 0);

示例 1 的 var reptile... 保存 this 引用并显示 'whatever'。示例 2 将显示 undefined,除非您在调用方手动分配范围(例如,在 jQuery 中):

setTimeout($.proxy(turtle.showBla, turtle), 0);

Example 1 is a common pattern for maintaining the reference to the current instance. In a callback situation, like:

setTimeout(turtle.showBla, 0);

Example 1's var reptile... saves the this reference and will show 'whatever'. Example 2 will show undefined, unless you manually assign scope on the calling side (e.g., in jQuery):

setTimeout($.proxy(turtle.showBla, turtle), 0);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文