我已经将我的代码简化为我可以做的最简单的express-js应用程序:

var express = require("express"),
    app = express.createServer();
app.use(express.static(__dirname + '/styles'));
app.listen(3001);

我的目录是这样的:

static_file.js
/styles
  default.css

然而,当我访问http://localhost:3001/styles/default.css时,我得到以下错误:

Cannot GET / styles /
default.css

我使用express 2.3.3和节点0.4.7。我做错了什么?


当前回答

除此之外,确保静态文件路径以/ (ex…/资产/ css)……在主目录(/main)之上的任何目录中提供静态文件

其他回答

我在用

app.use(express.static('public'))

当公共文件夹中没有名为index.html的文件时。

我在浏览器中得到以下错误:

“不能得到/”

当我将文件重命名为“index.html”时,它可以正常工作。

我找到我的css文件,并添加一个路由到它:

app.get('/css/MyCSS.css', function(req, res){
  res.sendFile(__dirname + '/public/css/MyCSS.css');
});

那么它似乎起作用了。

在你的nodejs文件中

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

app.use('/static', express.static('path_to_static_folder'));

你的哈巴狗档案里

...
script(type="text/javascript", src="static/your_javascript_filename")
...

注意“静态”这个词。nodejs文件和pug文件必须相同。

Webpack让事情变得尴尬

作为对所有其他现有解决方案的补充:

首先:如果你将文件和目录的路径建立在cwd(当前工作目录)上,事情应该照常工作,因为cwd是你启动node(或npm start, yarn run等)时所在的文件夹。

然而……

如果你正在使用webpack, __dirname行为将非常不同,这取决于你的节点。__dirname设置和你的webpack版本:

In Webpack v4, the default behavior for __dirname is just /, as documented here. In this case, you usually want to add this to your config which makes it act like the default in v5, that is __filename and __dirname now behave as-is but for the output file: module.exports = { // ... node: { // generate actual output file information // see: https://webpack.js.org/configuration/node/#node__filename __dirname: false, __filename: false, } }; This has also been discussed here. In Webpack v5, per the documentation here, the default is already for __filename and __dirname to behave as-is but for the output file, thereby achieving the same result as the config change for v4.

例子

例如,让我们说:

需要添加静态公用文件夹 它位于你的输出文件夹(通常是dist)旁边,在dist文件夹中没有子文件夹,它可能是这样的

const ServerRoot = path.resolve(__dirname /** dist */, '..');
// ...
app.use(express.static(path.join(ServerRoot, 'public'))

(重要的是:再次强调,这是独立于你的源文件在哪里,只看你的输出文件在哪里!)

更高级的Webpack场景

如果在不同的输出目录中有多个入口点,事情会变得更复杂,因为同一文件的__dirname对于输出文件(即条目中的每个文件)可能是不同的,这取决于该源文件合并到的输出文件的位置,更糟糕的是,相同的源文件可能合并到多个不同的输出文件中。

你可能想要避免这种场景,或者,如果你不能避免它,使用Webpack来管理和注入正确的路径,可能是通过DefinePlugin或EnvironmentPlugin。

除此之外,确保静态文件路径以/ (ex…/资产/ css)……在主目录(/main)之上的任何目录中提供静态文件