我使用名为express-subdomain的express.js包来促进对我设置的已定义子域的请求。
据我所知,子域构造函数需要一个快速路由器对象,我从导出的路由器模块传递给它。
我尝试的内容如下:
MAIN APP.JS服务器文件
var common = {
express: require('express'),
subdomain: require('express-subdomain')
};
common.app = common.express();
module.exports = common;
common.app.listen(3000, function () {
console.log(('app listening on http://localhost:3000'));
});
var router = require('./router/index');
// Error Handling
common.app.use(function(err, req, res, next) {
res.status(err.status || 500);
});
路由器/索引
module.exports = function (){
var common = require('../app');
var router = common.express.Router();
common.app.get('/', function(req, res) {
res.send('Homepage');
});
common.app.use('/signup', require('./routes/signup'));
common.app.use(common.subdomain('login', require('./routes/login')));
}();
路由/登录
var express = require('express');
var router = express.Router();
router.get('/', function (req, res) {
res.send('login working');
});
router.get('/info', function (req, res) {
});
module.exports = router;
我尝试访问以下网址的登录子域名:
http://login.localhost
http://login.localhost:3000
http://login.localhost.com
http://login.localhost.com:3000
任何澄清或协助表示赞赏。
答案 0 :(得分:0)
express-subdomain的作者
有几件事:
127.0.0.1 myapp.local
127.0.0.1 login.myapp.local
有关详细信息,请参阅https://github.com/bmullan91/express-subdomain#developing-locally
在任何其他路由之前注册子域路由,包括主页路由。订单非常重要
不建议您在/routes/index.js
中使用的模式(需要自我调用功能)。像在/routes/login.js
中那样导出路由器更干净。
最后,如果你仍然陷入困境,请查看express子域的来源,特别是它的测试。
快乐的编码。