我正在尝试使用pg-promise从节点中的postgres检索嵌套查询。
我只能从表中检索带有混合数据的简单非嵌套结果。
我想从三个表(用户,帖子,评论)中为每个帖子获取一个数据集-users.username,posts.text,post.timestamp,comments.author,comments.text,comments.timestamp。用户和帖子与用户名链接,帖子和评论与posts.id和comments.parrent链接。
这是我想获取的数据:
[
{"username": "jane",
"postText": "Hello",
"postId": 4,
"postTimestamp: "1651156414",
allComments: [
{"commentsId": 2,
"commentsAuthor": "john",
"commentsText": "nice",
"commentsTimestamp": "156454565456"
},
{"commentsId": 3,
"commentsAuthor": "ghost",
"commentsText": "hiii",
"commentsTimestamp": "165165848"}]
}]
我正在使用pg-promise:
function getUsers(t) {
return t.map('SELECT * FROM posts', post=> {
return t.map('SELECT * FROM users WHERE users.username = post.username', post.id, user => {
return t.any('SELECT * FROM comments, posts WHERE comments.parrent = post.id', user.id)
.then(comment => {
user.comment = comment;
return user;
});
})
.then(t.batch)
.then(user=> {
post.user = user;
return post;
});
}).then(t.batch);
}
db.task(getUsers)
.then(data => {
console.log(data)
res.send(data)
})
.catch(error => {
console.log(error)
});
});
它给了我错误:
TypeError: undefined is not a function at Array.map (<anonymous>) at obj.any.call.then.data
您有任何想法吗,我做错了什么?谢谢
答案 0 :(得分:0)
问题出在这条线上:
return t.map('SELECT * FROM posts', post => {
应为:
return t.map('SELECT * FROM posts', [], post => {
您将函数作为格式参数传递,因此出现了问题。
但是一般来说,this post通过JSON函数json_build_object
在性能方面提供了更好的解决方案,因为您将只执行一个查询,而不是您尝试执行的查询。