我想在express中创建自动路由,目前我可以读取目录并从所有可用文件中手动添加路由,如果路由文件中有更改,也可以更新添加的路由
delete require.cache[require.resolve(scriptpath)];
var routescript = {};
try {
routescript = require(scriptpath);
} catch (e){
console.log('Express >> Ignoring error route: ' + route + ' ~ >' + scriptpath);
}
var stack_index = app._router.stack_map[route]
var stack = app._router.stack[stack_index];
if (stack) {
app._router.stack[stack_index].handle = routescript;
console.log('Replace Route Stack \'' + route + '\'');
} else {
app.use(route, routescript);
var stack_index = app._router.stack_map[route] = (app._router.stack.length-1);
console.log('Add Route Stack \'' + route + '\'');
}
但这些只在app听端口之前才有效,
如何在应用程序侦听端口后添加/删除新的路由堆栈?
我能想到的一种方法是关闭服务器配置/添加/删除重听的路由,但我想这是一个不好的做法
答案 0 :(得分:2)
在快速搜索快速代码后,我发现了这个:
router.get('/', function(req, res) {
res.render('index', {
title: 'Express'
});
console.log("adding route")
addGet('/mypath', function(req, res) {
res.send('hi')
});
});
function addGet(path, callback) {
Router = require('express').router;
// We get a layer sample so we can instatiate one after
layerSample = router.stack[0];
// get constructors
Layer = layerSample.constructor;
Route = layerSample.route.constructor;
// see https://github.com/strongloop/express/blob/4.x/lib/router/index.js#L457
route = new Route(path);
var layer = new Layer(path, {
sensitive: this.caseSensitive,
strict: this.strict,
end: true
}, route.dispatch.bind(route));
layer.route = route;
// And we bind get
route.get(callback)
// And we map it
router.stack.push(layer);
}
然后在localhost
打开您的浏览器,然后在localhost/mypath
打开您的浏览器!!!
答案 1 :(得分:1)
我太蠢了......
Express 4默认即使在收听后也能添加路线
那为什么我以前不能这样做呢?因为在路由器层堆栈的顶部,我添加了错误处理层堆栈,因此我在其之后添加的任何路由器层都不会被请求访问,因为当处理请求时,它将首先由错误处理程序层捕获。 / p>
所以正确的方法如下:
我必须管理错误处理程序堆栈层的索引
位于app._router.stack
,在这种情况下,它是一些层
数组的结尾
添加新路线,例如:使用app.use("/something", function(req,
res, next){ res.send("Lol") })
删除错误处理程序层堆栈,并将其放入 路由器堆栈数组的最后一部分
// in this case, error map is array
// contain index location of error handling stack layer
var error_handlers = app._router.stack.splice(error_map[0], error_map.length);
app._router.stack.push.apply(app._router.stack, error_handlers);
现在你准备好了。