gpt4 book ai didi

google-chrome - Electron 如何确定自定义协议(protocol)的来源

转载 作者:行者123 更新时间:2023-12-03 12:37:56 29 4
gpt4 key购买 nike

我有一个使用自定义 app:// 的 Electron 应用程序提供文件的协议(protocol)。 Chrome/Electron 似乎认为从该协议(protocol)返回的所有文件都来自同一来源。这意味着应用页面具有相同的缩放级别,这不是我想要的。
在这种情况下,Electron 如何确定来源(指向代码的指针会有所帮助),是否有任何方法可以说服它某些 URL 来自不同的来源,除非注册另一个协议(protocol),如 app2:// ?

最佳答案

我在 the Chromium source code 中找到了一些文档:

// Zoom can be defined at three levels: default zoom, zoom for host, and zoom
// for host with specific scheme. Setting any of the levels leaves settings
// for other settings intact. Getting the zoom level starts at the most
// specific setting and progresses to the less specific: first the zoom for the
// host and scheme pair is checked, secondly the zoom for the host only and
// lastly default zoom.
in zoom_controller.cc 似乎它只是使用 URL 中的方案/主机:
       GURL url = content::HostZoomMap::GetURLFromEntry(entry);
std::string host = net::GetHostOrSpecFromURL(url);

if (zoom_map->HasZoomLevel(url.scheme(), host)) {
// If there are other tabs with the same origin, then set this tab's
// zoom level to match theirs. The temporary zoom level will be
// cleared below, but this call will make sure this tab re-draws at
// the correct zoom level.
double origin_zoom_level =
zoom_map->GetZoomLevelForHostAndScheme(url.scheme(), host);

std::string GetHostOrSpecFromURL(const GURL& url) {
return url.has_host() ? TrimEndingDot(url.host_piece()) : url.spec();
}
url.spec()实际上返回整个 URL,这表明如果我浏览 file://他们将获得单独缩放级别的 URL。我通过实验验证了这一点,似乎确实如此。
无论如何,我都知道我的情况发生了什么——我在使用 WebPack 开发服务器的开发模式下运行。在这种情况下,所有文件都来自 localhost所以他们总是得到相同的缩放。
但是在生产中使用 app://我的代码将主机设置为 .所以 URL 就像 app://./index.html .主机实际上被自定义协议(protocol)处理程序忽略了,所以要给窗口单独的来源,你可以为它们编一个假的主机名,比如 app://main/index.htmlapp://help/help.html .似乎工作完美。

关于google-chrome - Electron 如何确定自定义协议(protocol)的来源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65701518/

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