VSCode Intellisense不使用'方法'在原型上显示方法。类型

时间:2018-01-08 03:48:36

标签: javascript visual-studio-code

Using prototype Using class

为什么没有vscode在原型上使用类型'方法'来显示方法。 ?由于以下内容在JavaScript中绝对不可能:

function Foo() {
  this.bar = 'bar'
}

function Foo.prototype.getBar () {
  return this.bar
}

或者如何使用'类'获得相同的注释?样品?

1 个答案:

答案 0 :(得分:0)

虽然目前这似乎是VSCode的局限性,但Intellisense似乎确实找到了类的原型方法。

模块实现(FooBar.js)中的智能感知:
enter image description here 模块导入位置(Main.js)中的Intellisense:
enter image description here

使用“ static”关键字创建静态成员可以正常工作。