Intellisense 可以识别 javascript 个原型函数吗?
Can Intellisense recognize javascript prototype functions?
我正在使用 VS Code,我希望 Intellisense 能够识别 javascript 原型函数。有没有办法配置它这样做?
function MyObject() {}
MyObject.prototype.foo = function() {};
MyObject.prototype.bar = function() {};
var myObj = new MyObject();
myObj. //I want Intellisense to show me the foo and bar functions here
最新版本的 VS Code 支持此功能。
我正在使用 VS Code,我希望 Intellisense 能够识别 javascript 原型函数。有没有办法配置它这样做?
function MyObject() {}
MyObject.prototype.foo = function() {};
MyObject.prototype.bar = function() {};
var myObj = new MyObject();
myObj. //I want Intellisense to show me the foo and bar functions here
最新版本的 VS Code 支持此功能。