我用这个简单的代码在用nodejs和Hapi启动服务器时遇到了一些问题。
这是代码:
var Hapi = require('hapi');
var http = new Hapi.Server('0.0.0.0', 8080);
http.route({
method: 'GET',
path: '/api',
handler: function(request, reply) {
reply({ 'api' : 'hello!' });
}
}
);
http.start();
这是错误:
http.route({
^
TypeError: undefined is not a function
at Object.<anonymous> (C:\Users\Prova.js:8:6)
at Module._compile (module.js:460:26)
at Object.Module._extensions..js (module.js:478:10)
at Module.load (module.js:355:32)
at Function.Module._load (module.js:310:12)
at Function.Module.runMain (module.js:501:10)
at startup (node.js:129:16)
at node.js:814:3
这是一个非常基础的代码,但是我不明白为什么它对http.route有问题。
最佳答案
在hapi 0.8.4中,可以使用addRoute()
添加路由:
var Hapi = require('hapi');
// Create a server with a host and port
var server = new Hapi.Server('localhost', 8000);
// Define the route
var hello = {
handler: function (request) {
request.reply({ greeting: 'hello world' });
}
};
// Add the route
server.addRoute({
method: 'GET',
path: '/hello',
config: hello
});
// Start the server
server.start();
但是那个版本的hapi很旧,您应该将其升级到最新版本。 hapi当前的稳定版本是8.8.0。
关于javascript - 如何在HAPI 0.8.4中添加路线,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31412713/