本篇介绍 VS Code Studio + Salesforce Extension Pack插件的使用。

一. 插件配置

  1. 下载并安装vs code studio,下载地址:https://code.visualstudio.com/
  2. 下载并安装 salesforce CLI,下载地址:https://developer.salesforce.com/tools/sfdxcli

安装以后,使用 cmd输入 sfdx,如果出现类似内容,则证明安装成功

Untitled

  1. 左侧切换到扩展区域,搜索 Salesforce Extension Pack并进行安装,此包中包含了9个组合的包,包含了所需要的CLI以及其他的核心包

Untitled

  1. [可选项] 下载并安装JDK,因为部分apex功能可能需要用到。可参考:https://developer.salesforce.com/tools/vscode/en/vscode-desktop/java-setup

二. 开发工具使用

  1. 使用 ctrl + shift + p 快捷键打开 commands,mac快捷键是command + shift + p,本篇内容以windows讲解。快捷键 ctrl + shift + p, 创建项目,建议使用 Create Project with Manifest

Untitled

template选择Standard,然后对项目目录起一个名称,保存在你需要的项目目录即可。

Untitled

当我们创建一个项目以后,我们可以简单的看三部分。

Untitled

  1. 授权一个org。使用 ctrl + shift + p,输入 sfdx: authorize an Org

Untitled

我们选择一下当前ORG的类型,是production/developer edition还是sandbox环境,选择 login / test的内容,如果项目禁用了 login / test方式,也可以基于 custom设置公司domain信息进行登录。

Untitled