为什么Hapi.js POST处理程序返回空的有效负载?

时间:2016-05-02 14:18:58

标签: javascript hapijs

我有一个接受POST调用的Hapi路由,但request返回有效负载的null值。

server.route({
    method: ['POST', 'PUT'],
    path: '/create_note',
    handler: function (request, reply) {
        console.log(request.payload); // returns `null`
        return reply(request.payload);
    }
});

我使用Postman向http://localhost:8000/create_note?name=test发送POST电话。

在处理函数中,console.log(request.payload)返回null

我做错了吗?

1 个答案:

答案 0 :(得分:7)

您正在使用?name=test传递查询字符串参数,而不是POST请求有效负载。

您可以通过引用request.query来访问查询参数。

http://localhost:8000/create_note?name=test的HTTP请求将产生:

console.log(request.query); // {name: 'test'}