JavaScript 匿名函数作用域

发布于 2024-09-08 08:58:46 字数 465 浏览 5 评论 0原文

我有以下匿名函数:

(function() {
 var a = 1;
 var b = 2;

 function f1() {
 }

 function f2() {
 }

 // this => window object!
 // externalFunction(this);
})();

function externalFunction(pointer) {
 // pointer.f1(); => fail!
}

我需要从此匿名函数调用外部函数并将其指针传递给调用函数 f1 & f2。 但我不能这样做,因为 this 引用的是窗口对象而不是内部范围。

我可以将函数设置为:

this.f1 = function() {}

但这是个坏主意,因为它们将位于全局空间中...

我如何将匿名空间传递给外部函数?

I have the following anonymous function:

(function() {
 var a = 1;
 var b = 2;

 function f1() {
 }

 function f2() {
 }

 // this => window object!
 // externalFunction(this);
})();

function externalFunction(pointer) {
 // pointer.f1(); => fail!
}

I need to call external function from this anonymous function and pass it's pointer to call functions f1 & f2.
But I can't do this, as this refer to window object instead of internal scope.

I can set function as:

this.f1 = function() {}

but it's bad idea, as they'll be in global space...

How I can pass anonymous space to external function?

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

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

发布评论

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

评论(2

一身软味 2024-09-15 08:58:46

我仍然想知道为什么你要把外部需要的函数设为私有......
但是就这样:

(function() {
  var a = 1;
  var b = 2;

  var obj = {
    f1: function() {
    },
    f2: function() {
    }
  }

  externalFunction(obj);
})();

function externalFunction(pointer) {
  pointer.f1(); // win
}

或者您可以单独传递 f1 和 f2,那么您不需要将它们放入对象中。

I still wonder why you would make functions to be private, that are needed outside...
But there you go:

(function() {
  var a = 1;
  var b = 2;

  var obj = {
    f1: function() {
    },
    f2: function() {
    }
  }

  externalFunction(obj);
})();

function externalFunction(pointer) {
  pointer.f1(); // win
}

Or you can pass f1 and f2 individually, then you don't need to put them into an object.

以歌曲疗慰 2024-09-15 08:58:46

您不能将作用域作为对象传递,但您可以使用作用域中所需的任何内容创建一个对象:

externalFunction({ f1: f1, f2: f2 });

You can't pass the scope as an object, but you can create an object with whatever you want from the scope:

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