gpt4 book ai didi

javascript - 如何在 hapi 0.8.4 中添加路由

转载 作者:行者123 更新时间:2023-12-03 09:33:30 26 4
gpt4 key购买 nike

我对这个使用 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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com