我正在使用 hapi.js 和 mongodb 创建一个 node.js api 服务器,但在 Amazon EC2 上运行时遇到了一些问题。在本地运行它可以工作,但如果我在 EC2 实例上运行它,我会收到错误TypeError: Cannot read property 'statusCode' of null
完整的堆栈跟踪如下:
TypeError: Cannot read property 'statusCode' of null
at Request._finalize (/home/ec2-user/backend/node_modules/@hapi/hapi/lib/request.js:497:31)
at Request._reply (/home/ec2-user/backend/node_modules/@hapi/hapi/lib/request.js:434:18)
at Request._execute (/home/ec2-user/backend/node_modules/@hapi/hapi/lib/request.js:280:14)
at processTicksAndRejections (node:internal/process/task_queues:93:5)
Run Code Online (Sandbox Code Playgroud)
奇怪的部分是 GET 请求正在工作,而 PUT、POST 和 DELETE 正在抛出上述错误。我已经设置 server.js 如下:
...
const init = async () => {
const server = Hapi.server({
port: 3000,
});
//server.route(routes);
server.route([
{
method: "GET",
path: "/test",
handler: async (request, h) => {
return "workin GET";
},
},
{
method: "PUT",
path: "/test",
handler: async (request, h) => {
return "workin PUT";
},
},
{
method: "POST",
path: "/test",
handler: async (request, h) => {
return "workin POST";
},
},
{
method: "DELETE",
path: "/test",
handler: async (request, h) => {
return "workin DELETE";
},
},
]);
await server.start();
console.log('Server running on %s', server.info.uri);
};
process.on('unhandledRejection', (err) => {
console.log(err);
process.exit(1);
});
init();
Run Code Online (Sandbox Code Playgroud)
有什么解决办法吗?
我发现在 EC2 实例上我安装了 node 版本15.5.0,该版本显然与 hapi.js ( 20.0.2)的最新版本不兼容。
要解决此问题,只需安装 node version 14.15.3。
| 归档时间: |
|
| 查看次数: |
562 次 |
| 最近记录: |