gpt4 book ai didi

javascript - 为什么 GET 响应返回 Node 服务器 js 的 404 错误?

转载 作者:太空宇宙 更新时间:2023-11-04 02:06:04 32 4
gpt4 key购买 nike

我用 node js 创建了一个 server.js 。使用 Index.html 我正在链接 css 和 js 脚本。但是在执行 HTML 文件后,我收到关于该文件的 404 错误。但是这些脚本文件已经存在于该路径中。我认为我的服务器代码可能是问题所在。

这是目录结构:

ui(文件夹)- 里面 - bootstrap,文件(文件夹)

server.js 
ui --- bootstrap/css/bootstrap.min.css
--- files/css/myedited.min.css
--- files/css/skins/skin-blue.min.css

index.html 中,我正在链接所有的 css/js 文件。

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Start</title>
<!-- Tell the browser to be responsive to screen width -->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<!-- Bootstrap 3.3.6 -->
<link rel="stylesheet" href="/ui/bootstrap/css/bootstrap.min.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css">
<!-- Ionicons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css">
<!-- Theme style -->
<link rel="stylesheet" href="/ui/files/css/myedited.min.css">
<link rel="stylesheet" href="/ui/files/css/skins/skin-blue.min.css">
</head>

这是我的服务器代码:

var express = require('express');
var morgan = require('morgan');
var path = require('path');

var app = express();
app.use(morgan('combined'));

app.get('/', function (req, res) {
res.sendFile(path.join(__dirname, 'ui', 'index.html'));
});

app.get('/ui/bootstrap/css/bootstrap.min.css', function (req, res) {
res.sendFile(path.join(__dirname, 'ui/bootstrap/css', 'bootstrap.min.css'));
});

app.get('/ui/files/css/skins/skin-blue.min.css', function (req, res) {
res.sendFile(path.join(__dirname, 'ui/files/css/skins', 'skin-blue.min.css'));
});

app.get('/ui/files/css/myedited.min.css', function (req, res) {
res.sendFile(path.join(__dirname, 'ui/files/css', 'myedited.min.css'));
});

var port = 8080; // Use 8080 for local development because you might already have apache running on 80
app.listen(8080, function () {
console.log(`my app listening on port ${port}!`);
});

当我加载我的应用程序时,index.html 工作正常。在浏览器中检查元素的帮助下,我可以看到 response

Cannot GET /ui/bootstrap/css/bootstrap.min.css
Cannot GET /ui/files/css/myedited.min.css
Cannot GET /ui/dist/files/skins/skin-blue.min.css

我还重新启动了服务器没有任何效果。任何想法 ?

最佳答案

通过将 / 放在文件路径的开头,您表示要在计算机基础目录中查找它们,而不是当前目录。

只需删除/:

app.get('ui/bootstrap/css/bootstrap.min.css', function (req, res) {
res.sendFile(path.join(__dirname, 'ui/bootstrap/css', 'bootstrap.min.css'));
});

app.get('ui/files/css/skins/skin-blue.min.css', function (req, res) {
res.sendFile(path.join(__dirname, 'ui/files/css/skins', 'skin-blue.min.css'));
});

app.get('ui/files/css/myedited.min.css', function (req, res) {
res.sendFile(path.join(__dirname, 'ui/files/css', 'myedited.min.css'));
});

关于javascript - 为什么 GET 响应返回 Node 服务器 js 的 404 错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40720181/

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