我有一个接受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
。
我做错了吗?
答案 0 :(得分:7)
您正在使用?name=test
传递查询字符串参数,而不是POST请求有效负载。
您可以通过引用request.query
来访问查询参数。
对http://localhost:8000/create_note?name=test
的HTTP请求将产生:
console.log(request.query); // {name: 'test'}