为什么GET响应在节点服务器js上返回404错误?

时间:2016-11-21 12:27:04

标签: javascript css node.js express

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

这是目录结构:

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

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工作正常。借助浏览器中的inspect元素,我可以看到响应

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

我也restarted server没有任何效果。任何的想法 ?

1 个答案:

答案 0 :(得分:2)

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

只需删除/

即可
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'));
});