加入Laravel中的查询返回错误的时间戳

时间:2015-02-02 22:59:48

标签: php mysql laravel eloquent

奇怪的事情发生了,我查询以下内容:

$bananafriends   = IsFree::join('friendships', function($join)use($user) {
                    $join->on('arefree.user_id', '=', 'friendships.user_rec_id')
                        ->where('friendships.user_send_id', '=', $user->id); 
                    })
                    ->get();

它返回时间戳&友谊模型的ID,但不是isFree模型的ID。 我不明白为什么或如何从isFree模型中检索时间戳,如果这不起作用。

谢谢!

1 个答案:

答案 0 :(得分:1)

现在选择权相互重叠。

您需要添加一个选择:

$bananafriends = IsFree::join('friendships', function($join)use($user) {
                    $join->on('arefree.user_id', '=', 'friendships.user_rec_id')
                        ->where('friendships.user_send_id', '=', $user->id); 
                    })
                    ->select('friendships.*', 'arefree.*', 'arefree.created_at as free_created')
                    ->get();

请参阅选择的文档:

http://laravel.com/docs/4.2/queries#selects

如果这不起作用,请告诉我,我会帮助您解决问题。