解决vscode扩展插件开发webview中的请求跨域问题

在webview中是无法发送跨域请求的,可以通过消息机制,在插件中发请求,然后将请求结果传递给webview

我的代码是基于vscode-webview-ui-toolkit-samples-vue来写的

webview vue组件中的代码示例

javascript 复制代码
async function initData() {
  // 向插件发送消息
  vscode.postMessage({
    command: 'getData',
    text: 'demo'
  })
}

// 监听插件消息
window.addEventListener('message', event => {
  const message = event.data; // The JSON data our extension sent

  switch (message.command) {
    case 'resultData':
      // 接收到数据
      const data = message.data
      // 然后就可以在webview中使用数据了
      break;
  }
})

onBeforeMount(() => {
  initData()
})

插件panel中的代码示例

javascript 复制代码
/**
   * Sets up an event listener to listen for messages passed from the webview context and
   * executes code based on the message that is recieved.
   *
   * @param webview A reference to the extension webview
   * @param context A reference to the extension context
   */
  private _setWebviewMessageListener(webview: Webview) {
    // 监听webview消息
    webview.onDidReceiveMessage(
      (message: any) => {
        const command = message.command;
        const text = message.text;

        switch (command) {
          case "getData":
            axios.get(`http://x.x.x.x:10200/${text}/list`).then(res => {
              // 将接口返回的数据发送给webview
              // 注意用axios发请求的化,发送数据中的data需要取res.data,而不能直接用res
              // 否则会报"TypeError: Converting circular structure to JSON"错误
              webview.postMessage({command: 'resultData', data: res.data});
            });
            return;
          // Add more switch case statements here as more webview message commands
          // are created within the webview context (i.e. inside media/main.js)
        }
      },
      undefined,
      this._disposables
    );
  }
相关推荐
培林将军1 天前
Visual Studio Code 之C/C++开发编译环境搭建
c语言·c++·vscode
yqsnjps74658ocz1 天前
如何检查Visual Studio是否支持C++14?
c++·ide·visual studio
电子_咸鱼1 天前
高阶数据结构——并查集
数据结构·c++·vscode·b树·python·算法·线性回归
Justin_JGT1 天前
vscode配置Claude Code(使用智谱API)
ide·vscode·编辑器
知兀1 天前
IDEA的Code Style配置(使用google的Java Code Stytle)
java·ide·intellij-idea
uotqwkn89469s2 天前
如果Visual Studio不支持C++14,应该如何解决?
c++·ide·visual studio
散峰而望2 天前
C语言刷题-编程(一)(基础)
c语言·开发语言·编辑器
好好沉淀2 天前
Apache 工具包(commons-io commons-lang3 )保姆介绍
java·ide
richxu202510012 天前
Java开发环境搭建之 10.使用IDEA创建和管理Mysql数据库
java·ide·intellij-idea
xfmtznfl2165pv2 天前
如何在VSCode中设置工作区特定的选项?
ide·vscode·编辑器