如何调整Hapi回复功能,使其仅回复JSON对象? 我应该发送它作为普通并发送?我似乎找不到一个好的例子
以下是一些编辑 - 添加了一些示例代码以了解发生了什么。
路线:
server.route({
method: 'GET',
path: '/user/',
handler: function (request, reply) {
var ids = null;
mysqlConnection.query('SELECT ID FROM Users;',function(err,rows,fields){
if(err) throw err;
ids = rows;
// console.log(ids);
reply(ids);
});
}
});
回复:
<html><head></head><body>
<pre style="word-wrap: break-word; white-space: pre-wrap;">[{"ID":1},{"ID":2},{"ID":3},{"ID":4},{"ID":5},{"ID":6},{"ID":7},{"ID":8},{"ID":9},{"ID":10},{"ID":11},{"ID":12},{"ID":13},{"ID":14},{"ID":15},{"ID":16},{"ID":17},{"ID":18},{"ID":19},{"ID":20},{"ID":21}]
</pre></body></html>
答案 0 :(得分:6)
我希望我能理解这个问题。我们在谈论版本8.x吗?对我来说似乎是默认的。使用此代码作为路由处理程序,
folders: {
handler: function( request, reply ) {
'use strict';
reply({
folders: folders
}).code( 200 );
}
},
并且正在做
curl http://localhost:3001/folders
我得到以下输出
* Hostname was NOT found in DNS cache
* Trying 127.0.0.1...
* Connected to localhost (127.0.0.1) port 3001 (#0)
> GET /folders HTTP/1.1
> User-Agent: curl/7.37.1
> Host: localhost:3001
> Accept: */*
>
< HTTP/1.1 200 OK
< content-type: application/json; charset=utf-8
< cache-control: no-cache
< content-length: 266
< accept-ranges: bytes
< Date: Tue, 03 Feb 2015 23:19:31 GMT
< Connection: keep-alive
<
{folders ..... }
另请注意,我只拨打reply()
而不是return reply()
HTH
答案 1 :(得分:3)
使用hapi的reply(data)
并传递data
对象将为您完成工作。在内部,hapi将为您的数据对象创建适当的JSON并进行响应。
有how to reply JSON for a given request using hapi的教程可能会提供更多见解。
答案 2 :(得分:3)
对于v17及更高版本,删除了 reply()界面。现在处理程序使用异步函数,您只需返回值。
来自hapi docs示例:
// Before
const handler = function (request, reply) {
return reply('ok');
};
// After
const handler = function (request, h) {
return 'ok';
};
答案 3 :(得分:0)
使用v17及更高版本,仅返回裸字符串不会导致json编码的回复。
使用return JSON.stringify()
来确保字符串经过json编码
例如
function (request, h) {
return JSON.stringify('ok');
};