本文整理汇总了TypeScript中hapi.Server.select方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Server.select方法的具体用法?TypeScript Server.select怎么用?TypeScript Server.select使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类hapi.Server
的用法示例。
在下文中一共展示了Server.select方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: Promise
return new Promise((resolve, reject) => {
server.select('api').register(arkPlugins.getPrefixPlugins(),
{
routes: {
prefix: '/api/v1'
}
}, err => {
if (err) {
console.error('unable to init plugin:', err);
return reject(err)
}
resolve();
});
})
示例2:
// From https://hapijs.com/api/16.1.1#serverconnections
import * as Hapi from 'hapi';
var server = new Hapi.Server();
server.connection({ port: 80, labels: 'a' });
server.connection({ port: 8080, labels: 'b' });
// server.connections.length === 2
const a = server.select('a');
// a.connections.length === 1
示例3:
// From https://hapijs.com/api/16.1.1#serverselectlabels
import * as Hapi from 'hapi';
const server = new Hapi.Server();
server.connection({ port: 80, labels: ['a', 'b'] });
server.connection({ port: 8080, labels: ['a', 'c'] });
server.connection({ port: 8081, labels: ['b', 'c'] });
const a = server.select('a'); // 80, 8080
const ac = a.select('c'); // 8080