VS Code 在键入时不显示 Salesforce 对象或 class 符号。代码完成不起作用

VS Code does not show Salesforce object or class symbols when typing. Code completion does not work

我安装了 Salesforce 扩展包。我已经 VSCode 设置了我的组织。我已经删除了我的 类 和我需要开发的页面。当我去实际开发时——我创建了我的对象的一个​​实例——我去填充那个对象的属性,但是没有出现任何属性。

示例:

Account account = new Account();

// normally you have this scenario:
account.(shows property list here like name, balance, etc.) 

// what i get:
account.(nothing shows here, not even an empty list)

通过安装 java 8 jdk 并在 settings.json 文件中引用正确的 java 路径解决了这个问题。