我在下面写了代码,我有一个TypeError: Server is not a constructor,但我不明白为什么以及如何修复它。
Server.js 代码:
const express = require('express');
class Server {
constructor() {
this.app = express();
this.app.get('/', function(req, res) {
res.send('Hello World');
})
}
start() {
this.app.listen(8080, function() {
console.log('MPS application is listening on port 8080 !')
});
}
}
app.js 代码:
const Server = require('./Server');
const express = require('express');
const server = new Server();
server.start();
呼如林
倚天杖
相关分类