使用express.static()

时间:2016-12-26 11:00:15

标签: node.js express

我有main.js作为我的快速服务器文件

var express = require('express');
var app = new express();

app.get('/', function(req,res){
    res.render('./../app/index.ejs', {});
})
.use(express.static(__dirname + '../app'))
.listen('3000');

我做了.use(express.static(__dirname + '../app')) to ask express to make it static

但我仍然遇到错误GET http://localhost:9001/main.jsx 404 (Not Found)

我的index.ejs文件看起来像这样

<head>
   <script src="./main.jsx"></script>
</head>
<body>Hello</body>

出了什么问题?

1 个答案:

答案 0 :(得分:1)

解决了路径不正确的问题

应该是

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