是否可以使用ajax
从Web服务检索数据并在VS代码扩展API开发(程序语言功能)中显示
export function activate(ctx: vscode.ExtensionContext): void {
...
// Use ajax over here to retrieve data from a web service
ctx.subscriptions.push(
vscode.languages.registerDefinitionProvider(
GO_MODE, new GoDefinitionProvider()));
...
}