使用 Hapi v17,我只是想制作一个简单的 Web API 来开始构建我的知识,但是每次测试构建的 GET 方法时,我都会遇到错误。下面是我正在运行的代码:
'use strict';
const Hapi = require('hapi');
const MySQL = require('mysql');
//create a serve with a host and port
const server = new Hapi.Server({
host: 'serverName',
port: 8000
});
const connection = MySQL.createConnection({
host: 'host',
user: 'root',
password: 'pass',
database: 'db'
});
connection.connect();
//add the route
server.route({
method: 'GET',
path: '/helloworld',
handler: function (request, reply) {
return reply('hello world');
}
});
server.start((err) => {
if (err) {
throw err;
}
console.log('Server running at:', server.info.uri);
});
以下是我得到的错误:
Debug: internal, implementation, error
TypeError: reply is not a function
at handler (/var/nodeRestful/server.js:26:11)
我不确定为什么调用回复函数会出现问题,但到目前为止这是一个致命错误。