NodeJS won't serve static files, even when using express.static

一笑奈何 提交于 2020-01-12 17:50:11

问题


I have something along the lines of the following:

var request = require('request'),
    express = require('express');

var app = express.createServer();

var port = process.env.PORT || 8080;

app.configure(function(){
    app.set("view options", { layout: false, pretty: true });
    app.use(express.favicon());
    app.use("/public", express.static(__dirname + '/public'));
    }
);

app.listen(port);

// Routes
app.get('/', function(req, resp){
    resp.render('index.jade', {pageTitle: 'Some title'});
});

Yet, when I visit /public/myfile.css for example, I still get:

Cannot GET /public/myfile.css My index.jade templates cannot seem to call the files either

Why is this?


回答1:


I don't think supplying the path like that is supported:

app.use("/public", express.static(__dirname + '/public'));

Try this, and look for your public files in the root:

app.use(express.static(__dirname + '/public'));

So /public/myfile.css becomes /myfile.css.




回答2:


Important also is where the position of the app.use(express.static(__dirname + '/public')) statement...

I had a problem when it was nor working when I've accidentally put this in a ./middle-conf.js file which later was imported as var configure = require('./middle-conf) and then the express app was passed into this configure(app).

So the express middle-ware processing order was not not correctly working.




回答3:


this works fine...

app.use("/public", express.static(__dirname + '/public'));

and in your html pages access it like this..

<script src="/public/yourcodes.js"></script>


来源:https://stackoverflow.com/questions/9646406/nodejs-wont-serve-static-files-even-when-using-express-static

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!