我有一个 Express Node.js 应用程序。结构如下:
myapp
+-- node_modules
+-- public
|-- htmls
|-- myhtml.html
+-- routes
|-- index.js
|-- app.js
我app.js
的如下:
var express = require('express')
, routes = require('./routes')
, user = require('./routes/user')
, http = require('http')
, path = require('path');
var app = express();
// all environments
// some stuff...
app.use(express.static(path.join(__dirname, 'public')));
app.use('/public', express.static(path.join(__dirname, 'public')));
app.get('/', routes.index);
app.get('/content/:file', routes.plainhtml);
http.createServer(app).listen(app.get('port'), function(){
console.log('Express server listening on port ' + app.get('port'));
});
我routes/index.js
的如下:
// Some stuff...
exports.plainhtml = function(req, res) {
res.sendfile('/public/htmls/' + req.params.file);
};
我打开浏览器并尝试获取以下地址:http://localhost:3000/content/myhtml.html
我收到 404 错误:
Express 404 错误:ENOENT,stat '/public/htmls/myhtml.html'
路由完成并调用函数......问题是当我尝试使用res.sendfile
. 我应该在那里通过什么地址???
该怎么办?