最近嘗試使用Visual Studio Code來作Salesforce的開發工具,體驗上比Sublime好用很多,介紹下詳細步驟html
第一步:下載對應版本的Visual Studio Codejava
下載地址:https://code.visualstudio.com/linux
選擇對應的版本選擇下載,而後進入VS Code 安裝界面git
保持默認設置,一直選擇下一步進行便可,安裝完成後就能看到VS Code的操做界面github
第二步:安裝 Salesforce CLIjson
操做系統 | 安裝地址 |
Mac OS | https://sfdc.co/sfdx_cli_osx |
Windows-32-bits | https://sfdc.co/sfdx_cli_win |
windows-64-bits | https://sfdc.co/sfdx_cli_win64 |
Debian/Ubuntu 64 | https://sfdc.co/sfdx_cli_linux Download the archive from one of the URLs in the manifest, extract the archive, then run the ./install script. |
Debian/Ubuntu x86 | https://sfdc.co/sfdx_cli_linux_x86 Download the archive from one of the URLs in the manifest, extract the archive, then run the ./install script. |
下載好雙擊安裝,跟着默認安裝便可windows
安裝好了以後能夠在命令行輸入sfdx COMMAND命令進行校驗jvm
第三步:在VS Code上安裝 Salesforce Extension Pack 插件工具
打開 VS Code,點擊 Extensions 開發工具
在搜索框中輸入 Salesforce Extension Pack ,點擊 Install 安裝
安裝完成後,重啓電腦讓軟件安裝時的環境變量生效.
重啓電腦後,打開VS Code,快捷鍵 Ctrl + Shift + P,輸入SFDX出現以下界面則安裝成功
* 若安裝失敗或不能出現上述界面,請檢查 JDK版本,支持 JDK8 和 JDK 11
* 配置JDK能夠參考參考資料4,配置VS Code中的JDK環境參數
MacOS:
{ "salesforcedx-vscode-apex.java.home": "/Library/Java/JavaVirtualMachines/adoptopenjdk-11.jdk/Contents/Home" }
Windows:
{ "salesforcedx-vscode-apex.java.home": "C:\\Program Files\\AdoptOpenJDK\\jdk-11.0.3.7-hotspot" }
參考資料連接
1.Salesorce Trailhead : Visual Studio Code for Salesforce Development
2.Salesforce Extensions for Visual Studio Code
3.Java JDK