gpt4 book ai didi

typescript - VS代码: How to enable links in a webpage in the Webview

转载 作者:行者123 更新时间:2023-12-04 15:43:38 26 4
gpt4 key购买 nike

vscode.previewHtml 被弃用,取而代之的是 Webview。我更新了我的 ahk extension for vscode使用这个新的 API。使用 hh.exe -decompile Docs AutoHotkey.chm 我得到了 AutoHotkey 主站点的本地网站版本。我想在第二列中显示一个上下文文档,以便您可以在编码时阅读它。所以我做了。我成功地加载了带有样式表的页面,但链接不起作用:我总是停留在同一页面上。

即使我可以更改它们的 href,我也无法转到另一个页面。尽管您可以在工具提示中读取 href 值,但每次单击链接时都没有任何反应。Docs 文件夹存储在扩展路径中,因此 localResourceRoots 应该没问题。

我注意到的一件奇怪的事情是,即使 enableScripts 设置为 true,似乎并不是所有的 js 代码都被执行,因为在 AutoHotkey 网站上,在 .chm 和每个使用 FF 打开的 .html 文件我可以看到侧边栏,但在 WebView 页面中看不到。

这是创建 WebView 的代码:


this.docsPanel = vscode.window.createWebviewPanel('ahk-offline-docs', 'Documentation', { viewColumn: vscode.ViewColumn.Two, preserveFocus: true }, {
enableScripts: true,
enableFindWidget: true,
enableCommandUris: true,
localResourceRoots: [vscode.Uri.file(path.join(this.docsDirectoryPath, 'docs//')).with({ scheme: 'vscode-resource' })]
});
this.docsPanel.onDidDispose((e) => {
this.isDocsPanelDisposed = true;
});

这是将页面加载到 WebView 的代码:


let url = vscode.Uri.file(path.join(this.docsDirectoryPath, 'docs/')).with({ scheme: 'vscode-resource' });
const dom = new JSDOM(data, { runScripts: "dangerously" });
const aTags = dom.window.document.getElementsByTagName('a');
const len = aTags.length;
const basePath = url.toString();
for (let i = 0; i < len; i++) {
const a = aTags[i];
if (!a.href.includes('about:blank')) {
const commentCommandUri = vscode.Uri.parse(`command:ahk.spy`);
a.href = basePath + a.href;
// a.removeAttribute('href');
// a.setAttribute('onclick', '{command:ahk.spy}');
}
}
let ser = dom.serialize();
this.docsPanel.webview.html = /*data/*ser*/ser.toString().replace('<head>', `<head>\n<base href="${url.toString()}/">`);

另一种想法是从页面启动 vscode.commands(因为 enableCommandUris),但我不知道如何执行这种操作。

如果您需要/想要重现此问题,您只需克隆存储库,进入 improving-offline-docs 分支并打开文件 offline-docs-manager.ts ,方法是openTheDocsPanel()

有没有办法使用链接切换当前页面?我应该开发一个 postMessage 系统吗?或者我错过了某处的设置?还是有更好的方法?

提前致谢!

最佳答案

Webviews 无法导航到当前 webview 内的另一个页面。如果您的 webview 尝试这样做,您应该会看到一条消息,例如 prevented webview navigation在 webview 开发者工具中

有两种方法可以处理 webview 中的链接:

  • <a>链接到外部资源的元素——例如 https:mailto:链接——在大多数情况下应该有效。可能会有一些奇怪的边缘情况,如果您遇到其中之一,您可能会想使用 command uri 或 postMessage在你的主扩展源中触发一些 Action

  • 如果您想更新 webview 内容本身,但由于某些原因无法在 webview 本身内执行此操作,请使用 command uri 或 postMessage在你的主扩展的源代码中调用一些函数来更新 webview 的 html

关于typescript - VS代码: How to enable links in a webpage in the Webview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56820226/

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