javascript – 为什么Hapi.js POST处理程序返回空的有效负载?
作者:互联网
我有一个接受POST调用的Hapi路由,但请求返回有效负载的空值.
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调用.
在handler函数中,console.log(request.payload)返回null.
难道我做错了什么?
解决方法:
您正在使用?name = test传递查询字符串参数,而不是POST请求有效负载.
您可以通过引用request.query来访问查询参数.
对http:// localhost:8000 / create_note?name = test的HTTP请求将产生:
console.log(request.query); // {name: 'test'}
标签:hapijs,javascript 来源: https://codeday.me/bug/20190727/1555155.html