Failed to load resource: the server responded with a status of 404 (Not Found) 127.0.0.1/:1 Refused to execute script from 'http://127.0.0.1:3000/script.js' because its MIME type ('text/html') is not executable, and strict MIME type checking is enabled. :3000/cal?btn=10:1 Failed to load resource: the server responded with a status of 500 (Internal Server Error) (索引):19 M :3000/favicon.ico:1 Failed to load resource: the server responded with a status of 404 (Not Found) 2(索引):28 Uncaught ReferenceError: cal is not defined at HTMLInputElement.onclick ((索引):28:88) onclick @ (索引):28 (索引):29 Uncaught ReferenceError: cal is not defined at HTMLInputElement.onclick ((索引):29:89) onclick @ (索引):29 (索引):28 Uncaught ReferenceError: cal is not defined at HTMLInputElement.onclick ((索引):28:88) onclick @ (索引):28 (索引):37 Uncaught ReferenceError: cal is not defined at HTMLInputElement.onclick ((索引):37:89) onclick @ (索引):37
时间: 2023-07-09 09:49:39 浏览: 399
根据你提供的错误信息,我可以看到以下几个问题:
1. 请求 `http://127.0.0.1:3000/script.js` 返回了 MIME 类型为 `text/html`,而不是 `application/javascript`。这通常是因为服务器没有正确配置 MIME 类型导致的。你可以检查一下服务器配置文件(如 nginx.conf 或 apache2.conf)中是否包含了 `.js` 文件的 MIME 类型,或者尝试使用 `express` 中间件来设置 MIME 类型,如下所示:
```javascript
app.get('/script.js', (req, res) => {
res.set('Content-Type', 'application/javascript');
res.sendFile(path.join(__dirname, 'public', 'script.js'));
});
```
2. 请求 `http://127.0.0.1:3000/cal?btn=10` 返回了 500 内部服务器错误,这可能是因为服务器代码中出现了错误。你可以检查一下服务器代码,特别是与 `/cal` 路由相关的代码是否有问题。
3. 请求 `http://127.0.0.1:3000/favicon.ico` 返回了 404 文件未找到错误,这通常是因为浏览器会自动请求网站的 favicon.ico 文件,而服务器没有提供该文件所导致的。你可以在服务器代码中添加以下代码来处理这个请求:
```javascript
app.get('/favicon.ico', (req, res) => {
res.sendFile(path.join(__dirname, 'public', 'favicon.ico'));
});
```
4. 在浏览器控制台中出现了 `Uncaught ReferenceError: cal is not defined` 错误,这通常是因为代码中使用了未定义的变量或函数,或者变量或函数名拼写错误所导致的。你需要检查一下代码中是否存在这样的问题,特别是与 `cal` 相关的代码是否正确。
阅读全文