gpt4 book ai didi

visual-studio-code - VSCode 扩展 : How do I open a new pane with an http url

转载 作者:行者123 更新时间:2023-12-05 07:28:22 25 4
gpt4 key购买 nike

在 VSCode 中,是否可以打开一个指向 http url 的新 Pane ?我有一个本地运行的服务器(在端口 8080 上)。我想将其作为 WebView 打开。我在 WebView API docs 中找不到任何提供此功能的内容.

除了在 VSCode 编辑器本身中打开 url 之外,我正在寻找的功能与代码段类似。

vscode.commands.executeCommand('vscode.open', vscode.Uri.parse('http://locahost:8080'));

最佳答案

您可以通过在 webview 中使用 iframe 来实现 https://code.visualstudio.com/docs/extensions/webview

 // And set its HTML content
panel.webview.html =
`<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cat Coding</title>
</head>
<body>
<iframe width="100%" height="100%" src='http://locahost:8080'> </iframe>
</body>
</html>`;

关于visual-studio-code - VSCode 扩展 : How do I open a new pane with an http url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53387601/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com