Javascript构造函数:无法在func内部调用

发布于 2025-01-01 09:59:27 字数 412 浏览 0 评论 0原文

您好,我定义了这个脚本:

var asdf = {                
        settings : {            
            scope : "blah"
        },  
        func1 : function () {
                alert('1');
        },
        func2 : function () {
                this.func1();
        }
}

为什么我不能使用 this.func1() 来调用成员 func?这很奇怪,因为 this.settings.scope 工作得很好。

正确的语法是什么? tnx

Hi I defined this script:

var asdf = {                
        settings : {            
            scope : "blah"
        },  
        func1 : function () {
                alert('1');
        },
        func2 : function () {
                this.func1();
        }
}

why cant I use this.func1() to call a member func? Its strange because this.settings.scope works perfectly.

Whats the correct syntax? tnx

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

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

发布评论

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

评论(2

ι不睡觉的鱼゛ 2025-01-08 09:59:27

“为什么我不能使用 this.func1() 来调用成员函数?”

你可以,只要你从 asdffunc2代码>.

asdf.func2();  // alerts '1'

如果你做了这样的事情...

var fn = asdf.func2;

fn();

那么它就不起作用,除非你手动设置上下文...

var fn = asdf.func2;

fn.call(asdf); // set the calling context of "func2" to the "asdf" object

"why cant I use this.func1() to call a member func?"

You can, as long as you called func2 from the context of asdf.

asdf.func2();  // alerts '1'

If you did something like this...

var fn = asdf.func2;

fn();

Then it wouldn't work, unless you manually set the context...

var fn = asdf.func2;

fn.call(asdf); // set the calling context of "func2" to the "asdf" object
听风念你 2025-01-08 09:59:27

我从你的标签中得知 func2 是一个构造函数?原因是 this 将是使用 new 调用函数时构造的对象。例如:

function Constructor() {
    console.log(this);
}

Constructor(); // window
new Constructor(); // instance of Constructor printed out

只需将 func1 访问为 asdf.func1 即可。无论如何,如果您在这种情况下使用this,那就更安全了; this 可以绑定到任何东西:

function func() {
    alert('What am I? ' + this);
}

func.call('A String! Weird.'); // Alerts What am I? A String! Weird.

I take it from your tags that func2 is a constructor? The reason is that this will be the object being constructed when a function is called using new. For example:

function Constructor() {
    console.log(this);
}

Constructor(); // window
new Constructor(); // instance of Constructor printed out

Instead, simply access func1 as asdf.func1 instead. It's safer if you don't use this in that type of situation, anyway; this can be bound to anything:

function func() {
    alert('What am I? ' + this);
}

func.call('A String! Weird.'); // Alerts What am I? A String! Weird.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文