虽然 hapi 本身没有“子路由”(我知道)的概念,但基本的实现很容易。
首先,hapi 在路径中提供通配符 变量,使用这些变量,您基本上可以为给定路径创建一个包罗万象的路径。
例如:
server.route({
method: 'GET',
path: '/projects/{project*}',
handler: (request, reply) => {
reply('in /projects, re-dispatch ' + request.params.project);
}
});
这些通配符路径有一些规则,最重要的是它只能在最后一段中,如果您将其视为“包罗万象”,这是有道理的。
在上面的示例中,{project*} 参数将作为 request.params.project 提供,并将包含调用路径的其余部分,例如GET /projects/some/awesome/thing 会将 request.params.project 设置为 some/awesome/project。
下一步是处理这个“子路径”(您的实际问题),这主要取决于您的品味和您希望如何工作。
您的问题似乎暗示您不想创建一个无休止的重复列表,其中包含非常相似的事物,但同时能够拥有非常具体的项目路线。
一种方法是将request.params.project 参数拆分为块并查找名称匹配的文件夹,其中可能包含进一步处理请求的逻辑。
让我们通过假设一个文件夹结构(相对于包含路由的文件,例如index.js)来探索这个概念,它可以很容易地用于包含特定路由的处理程序。
const fs = require('fs'); // require the built-in fs (filesystem) module
server.route({
method: 'GET',
path: '/projects/{project*}',
handler: (request, reply) => {
const segment = 'project' in request.params ? request.params.project.split('/') : [];
const name = segment.length ? segment.shift() : null;
if (!name) {
// given the samples in the question, this should provide a list of all projects,
// which would be easily be done with fs.readdir or glob.
return reply('getAllProjects');
}
let projectHandler = [__dirname, 'projects', name, 'index.js'].join('/');
fs.stat(projectHandler, (error, stat) => {
if (error) {
return reply('Not found').code(404);
}
if (!stat.isFile()) {
return reply(projectHandler + ' is not a file..').code(500);
}
const module = require(projectHandler);
module(segment, request, reply);
});
}
});
这样的机制将允许您将每个项目作为应用程序中的一个节点模块,并让您的代码找出适当的模块以用于在运行时处理路径。
您甚至不必为每个请求方法指定此项,因为您可以简单地使用method: ['GET', 'POST', 'PUT', 'DELETE'] 而不是method: 'GET' 让路由处理多个方法。
然而,它并不完全处理如何处理路由的重复声明,因为您需要为每个项目设置一个非常相似的模块。
在上面的示例包含和调用“子路由处理程序”的方式中,示例实现将是:
// <app>/projects/<projectname>/index.js
module.exports = (segments, request, reply) => {
// segments contains the remainder of the called project path
// e.g. /projects/some/awesome/project
// would become ['some', 'awesome', 'project'] inside the hapi route itself
// which in turn removes the first part (the project: 'some'), which is were we are now
// <app>/projects/some/index.js
// leaving the remainder to be ['awesome', 'project']
// request and reply are the very same ones the hapi route has received
const action = segments.length ? segments.shift() : null;
const item = segments.length ? segments.shift() : null;
// if an action was specified, handle it.
if (action) {
// if an item was specified, handle it.
if (item) {
return reply('getOneItemForProject:' + item);
}
// if action is 'items', the reply will become: getAllItemsForProject
// given the example, the reply becomes: getAllAwesomeForProject
return reply('getAll' + action[0].toUpperCase() + action.substring(1) + 'ForProject');
}
// no specific action, so reply with the entire project
reply('getOneProject');
};
我认为这说明了如何在运行时在您的应用程序中处理单个项目,尽管它确实引起了您在构建应用程序架构时需要处理的几个问题:
- 如果项目处理模块真的很相似,你应该
创建一个用于防止复制同一模块的库
一遍又一遍,因为这使得维护更容易(其中,我
侦察,是拥有子路由的最终目标)
- 如果你能确定在运行时使用哪些模块,你应该
也能够在服务器进程启动时弄清楚这一点。
创建一个库以防止重复代码是您应该尽早做(学会做)的事情,因为这使维护更容易,您未来的自己会感激不尽。
确定哪些模块可用于处理您在应用程序开始时拥有的各种项目,这将使每个请求都不必一遍又一遍地应用相同的逻辑。 Hapi 可能能够为您缓存它,在这种情况下它并不重要,但如果缓存不是一个选项,您可能最好使用较少的动态路径(我相信这是不提供此功能的主要原因默认情况下是 hapi)。
您可以在应用程序开始时遍历项目文件夹查找所有<project>/index.js,并使用glob 注册更具体的路由,如下所示:
const glob = require('glob');
glob('projects/*', (error, projects) => {
projects.forEach((project) => {
const name = project.replace('projects/', '');
const module = require(project);
server.route({
method: 'GET',
path: '/projects/' + name + '/{remainder*}',
handler: (request, reply) => {
const segment = 'remainder' in request.params ? request.params.remainder.split('/') : [];
module(segment, request, reply);
}
});
});
});
这有效地取代了上述在每个请求上查找模块的逻辑,并切换到(稍微)更有效的路由,因为您正在计算您将要服务的项目,同时仍然将实际处理留给每个项目模块你提供。
(不要忘记实现/projects 路由,因为这现在需要明确地完成)