如何获取Visual Studio代码(VS代码)以显示对象的方法预览?

时间:2019-05-23 06:11:25

标签: javascript visual-studio-code intellisense javascript-intellisense

我一直在遵循Traversy Media JavaScript速成课程。我注意到我无法像他那样获得Visual Studio Code来显示对象的方法。我搜索了一下,并说应该自动打开IntelliSense,但它对我不起作用。有帮助吗?

https://youtu.be/hdI2bqOjy3c?t=3777

https://i.imgur.com/OPleMnc.mp4

1 个答案:

答案 0 :(得分:1)

您的代码中有一些错误使IntelliSense无法正常工作:

function Person(dob){
    this.dob = new Date(dob); //semicolon here
}

const person1 = new Person('John', 'Doe', '4-3-1980'); //define that person1 (your p) is const variable, and semicolon

person1.dob.getDate(); //and your IntelliSense will prompt object methods normally