对于Mozilla,Express.js - 静态文件的GET失败

时间:2017-08-05 15:04:36

标签: node.js express static mozilla

我是新手表达,试图通过表达静态机制来提供html文件。以下代码在Windows 10上的Microsoft Edge中正确显示html文件但使用Mozilla我收到错误Cannot GET /designer.html/,并且URL自动从http://localhost:3000/designer.html/更改为http://localhost:3000/designer.html

我只是想知道我是在做一些愚蠢的事,或者这确实是一个错误。

'use strict';

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

let dir = path.join(__dirname, 'views');
app.use(express.static(dir));

app.listen(3000, () => {
   console.log('Designer listening on port 3000.');
});

0 个答案:

没有答案