2

首先,在这里发现了几个类似的问题,但没有重复,我认为我的情况略有不同。

尝试使用 vhost for subdomians 让网站和相关 API 在 Express 上工作。

这是我的文件夹结构

/api
  api.js
/server
  website.js
server.js

我的 server.js

const vhost = require('vhost');
const express = require('express');

const app = express();
app.use(vhost('localhost', require('./server/website.js').app));
app.use(vhost('api.localhost', require('./api/api.js').app));

app.listen(1337, () => {});

我的 api.js

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

app.get('/', function(req, res){
    res.send({ hello: 'world' });
});

module.exports = app;

最初我到 api.js 的路径是错误的,我得到了一个未找到的错误,所以现在我知道我的路径是正确的,但现在无论我做什么,我都会收到错误“Typeerror:argument handle is required”。

任何帮助将不胜感激。

4

2 回答 2

1

您已经导出应用程序。因此,没有必要将 .app 添加到您的要求末尾。

它应该是:

app.use(vhost('localhost', require('./server/website')));
app.use(vhost('api.localhost', require('./api/api')));

希望有帮助。

于 2018-04-18T12:02:34.190 回答
1

这就是我所做的:

//used the api.localhost as the subdomain url
//it requires another express app.js to work
//the other express app must -> module.exports = app;

const vhost = require('vhost');

const app = express();
app.use(vhost('api.localhost', require('./api/app')));
于 2019-04-17T17:52:34.340 回答