我有两个名为user和comments的表。
User Comments
id| name id| description| user_id
--------- ------------------------
1 Sam 1 Awesome dude 1
2 Dean 2 Cool 1
3 Ghost busters 2
如何联接表以获得如下结果。
{
id:1,
name: Sam
comments:[
{
id:1,
description:Awesome dude
},
{
id:2,
description:Cool
}
]
}
1条答案
按热度按时间thtygnil1#
试试拉威尔
ORM
把这段感情写在你的心里User
模型