Node.js Express 提供 index.html 而不是静态文件

问题描述 投票:0回答:3

我正在使用 Angular 启动带有 Express 应用程序的 Node.js。在 cloud9 上创建应用程序时一切正常。

我刚刚在我的 ec2 实例上发布了该应用程序,现在节点总是提供 index.html 而不是我的静态文件...当我查看 chrome 调试网络时,我看到所有 js 文件已加载(状态 200),但是当我预览它们时,它是我的index.html文件...我的js文件的类型也设置为text/html...

这是我的小 server.js (没有路由,因为我伪造了我的角度数据,所以现在没有调用服务器......)

var express = require('express'),
path = require('path'),
http = require('http'),
fs = require('fs');

var app = express();

var logFile = fs.createWriteStream('./logger/express.log', {flags: 'a'}); //use {flags: 'w'} to open in write mode

app.configure(function () {
    app.set('port', process.env.PORT || 3000);
    app.use(express.logger({stream: logFile}));
    app.use(express.bodyParser()),
    app.use(express.static(path.join(__dirname, 'public')));
});

 /*app.get('/events', eventRoute.getEvents);
app.post('/events', eventRoute.saveEvent);*/

http.createServer(app).listen(app.get('port'), function () {
    console.log("Express server listening on port " + app.get('port'));
});

正如我之前所说,cloud9 上一切正常(暂时无法在本地尝试...)。

有人知道出了什么问题吗?

谢谢

多米尼克

PS:我忘了说它和我的 CSS 文件是一样的!

编辑:这是我的意思的小图片! enter image description here

当我查看任何文件的预览时,我得到enter image description here

Edit2:我刚刚删除了所有文件并重新上传。同样的问题!我真的需要这方面的帮助!

要查看问题的现场演示,请点击 该网站

node.js express assets
3个回答
4
投票

您能详细说明一下“静态文件”的含义吗?

在这一行:

app.use(express.static(path.join(__dirname, 'public')));

您已快速路由以将“公共”目录中的所有文件作为静态文件提供。默认情况下,如果调用该目录,express.static 将提供“index.html”服务。由于您将“公共”目录提供给“/”,因此它正在传递index.html。

编辑:我不确定这是否是问题所在,但这部分代码是多余的:

http.createServer(app).listen()

你可以直接说:

app.listen([port], [callback]);

自从调用express()创建了一个服务器。 希望有帮助。


1
投票

经过几个小时的研究,我终于找到了它!

问题根本与代码无关!我正在使用一个新的 ec2 实例,但我没有将端口 80 路由到我的 node.js 应用程序 (81**)。

我基本上只是运行了这个命令,一切都开始正常工作。

iptables -t nat -A 预路由 -p tcp --dport 80 -j 重定向 --to 81**

谢谢大家


0
投票

在包含 server.js / index.js 文件的根文件夹中,添加以下代码 -

const express = require("express");
const app = express();
const path = require("path");

有时 server.js 文件无法理解构建文件夹的位置,因此添加构建文件夹的静态位置

app.use(express.static('client/build'));

// This will render your frontend at http://localhost:PORT/
app.get('*', (req, res) => {
res.sendFile(path.resolve(__dirname, 'client', 'build', 'index.html'));
});

// To serve you api at http://localhost:PORT/api
app.get("/api", (req, res) => {
  res.send("This is API");
});

// After this add the required the port number

const PORT = process.env.PORT

app.listen(PORT, () => {
  console.log("✅ Server running on port:",PORT);
});

确保调用函数的命令按此顺序 -

  1. 应用程序使用
  2. 应用程序获取
  3. app.listen

运行命令-node server.js

© www.soinside.com 2019 - 2024. All rights reserved.