为什么 Chrome(在 Electron 内部)会突然重定向到 chrome-error://chromewebdat

Why might Chrome (inside Electron) suddenly redirect to chrome-error://chromewebdata?(为什么 Chrome(在 Electron 内部)会突然重定向到 chrome-error://chromewebdata?)
本文介绍了为什么 Chrome(在 Electron 内部)会突然重定向到 chrome-error://chromewebdata?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我的电子应用程序随机重定向到 chrome-error://chromewebdata,我不知道为什么.控制台等没有错误.

My electron app is randomly redirecting to chrome-error://chromewebdata, and I've no idea why. There's no errors in the console, etc.

当 Electron 应用程序第一次启动时,窗口打开,它从我的应用程序重定向到该 URL,我看到一个空白的空白屏幕.无需用户交互,只需在应用启动时进行.

When the Electron app first starts, the window opens, and it redirects away from my application to that URL and I see an empty blank white screen. No user interaction is necessary, it just happens when the app starts.

如果我打开 devtools,我可以看到 window.location.href 包含 chrome-error://chromewebdata 而不是 http://localhost:9080(Electron 应用程序使用 localhost URL 运行).

If I open devtools, I can see that window.location.href contains chrome-error://chromewebdata instead of http://localhost:9080 (the Electron app runs using a localhost URL).

我尝试删除 ~/Library/Application Support/my-app-name 的本地 Electron/Chrome 数据文件夹并重新开始,但没有成功.

I tried deleting the local Electron/Chrome data folder at ~/Library/Application Support/my-app-name and starting over, but no luck.

Chrome(在 Electron 中?)可以决定重定向到 chrome-error://chromewebdata 的原因是什么?

What are reasons that Chrome (in Electron?) can decide to redirect to chrome-error://chromewebdata?

推荐答案

由于某种原因,您的代码试图导航到无效(不存在)的 URL,然后导致 window.location.hrefchrome-error://chromewebdata.

For some reason, your code is trying to navigate to an invalid (non-existing) URL, which then results in window.location.href being chrome-error://chromewebdata.

重申一下:没有直接重定向到 chrome-error://chromewebdata,而是重定向到不存在或无法访问的 URL.

To reiterate: there is no direct redirection to chrome-error://chromewebdata, but instead to a URL that doesn't exist or is not reachable.

检查您的代码是否会导致此导航(可能是重定向).检查 DevTools 中的 Network 选项卡非常有用,确保选中Preserve log".这应该可以说明到底发生了什么.

Check if your code causes this navigation (possibly a redirect). It is very useful to inspect the Network tab in DevTools, making sure that "Preserve log" is checked. This should give some indication about what exactly is happening.

这篇关于为什么 Chrome(在 Electron 内部)会突然重定向到 chrome-error://chromewebdata?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Google apps script get range of bytes from binary file(谷歌应用程序脚本从二进制文件中获取字节范围)
Sending Multiple attachments with Google Script from Google Drive(使用 Google 脚本从 Google Drive 发送多个附件)
Distributing Google Apps Scripts for Sheets in your company network(在您的公司网络中分发适用于表格的 Google Apps 脚本)
Upload file to my google drive from anyone using javascript(使用 javascript 将文件从任何人上传到我的谷歌驱动器)
quot;Shared Drivequot; support in Google Apps Script(“共享驱动器Google Apps 脚本中的支持)
Angular 2+ HTTP POST and GDrive API. Resumable file upload with name(Angular 2+ HTTP POST 和 GDrive API.带名称的可恢复文件上传)