我如何在javascript中创建类后运行函数

时间:2016-02-26 19:16:00

标签: javascript node.js

在创建类和使用类方法之后,我只想在onсe上调用构造函数。我如何在JavaScript中执行此操作?谢谢!

var Test=function(){
        //hello(); // why not working? How call?
}

Test.prototype.hello=function(){
        console.log(1);
}

var t=new Test();
t.hello()

https://jsfiddle.net/dmitriykupriynov/doo6bj0b/

1 个答案:

答案 0 :(得分:7)

在构造函数中,您可以通过this关键字访问对象的方法:

var Test=function(){
    this.hello();
}