gpt4 book ai didi

node.js - "Synchronous XMLHttpRequest on the main thread is deprecated"使用 nodejs app.get 或 http-server

转载 作者:搜寻专家 更新时间:2023-10-31 23:42:35 24 4
gpt4 key购买 nike

我正在为 node.js 中的后端在 AngularJS 中创建前端。我可以选择两个简单的 node.js 前端服务器来为前端网页提供服务:一个是简单的 app.get in express,另一个是使用 http-server 包。

无论我使用哪种前端服务器代码,我都会在 Chrome 中收到以下浏览器控制台消息:

Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check http://xhr.spec.whatwg.org/.

为了确保这不是由任何 Angular(或 Bootstrap)引起的,我已将我的网页缩减为以下内容:

<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>zoneshark</title>
</head>
<body>
<h1>Hello, world!</h1>
</body>
</html>

为什么我会收到错误消息? http-server 是否总是导致此错误?我如何使用 nodejs 设置前端服务器,以便不会发生此错误(只是这个简单的“hello world”页面将是一个起点)?

我用来替代 http-server 的服务器代码是:

var express = require('express');
var app = express();

app.get('/', function(req,res) {
res.sendFile('./index.html', {root: __dirname});
});

app.get(/^(.+)$/, function(req, res) {
res.sendFile('./' + req.params[0], {root: __dirname});
});

app.listen(80);

另一个奇怪的地方。从 http-server 控制台看,http-server 似乎提供两种资源:如预期的/index.html,还有/favicon.ico——这很奇怪,因为这在任何地方都没有提到。

最后的奇怪之处:这只发生在 Chrome 中。在 IE 中没有问题,也不需要 favicon.ico。

在 Chrome 中,我清除了所有浏览数据,自动填充表单数据、密码和内容许可除外。

最佳答案

感谢您的评论。我已经找到了这个问题,它在 Chrome 中——更具体地说是扩展。

问题出在我的扩展上:PropertyWizza v2.0。禁用此扩展可以解决问题。我现在将卸载它,以免它干扰我的开发消息。

这一切都是推断出来的,因为我注意到,只要我使用 Chrome,从家里的任何计算机访问任何网站(例如 BBC 和 GitHub)时,我都会遇到同样的问题。

我对任何第一次开始调试前端的人的建议是,在开始之前检查你在所有浏览器中在其他网站上遇到的错误。这将为您的测试提供“控制”。

关于node.js - "Synchronous XMLHttpRequest on the main thread is deprecated"使用 nodejs app.get 或 http-server,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28531743/

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