php - Laravel orderBy 关系

标签 php laravel eloquent eloquent-relationship

我正在循环查看特定帖子的作者发布的所有评论。

foreach($post->user->comments as $comment)
{
    echo "<li>" . $comment->title . " (" . $comment->post->id . ")</li>";
}

这给了我

I love this post (3)
This is a comment (5)
This is the second Comment (3)

如何按 post_id 排序,以便上述列表按 3,3,5 排序

最佳答案

可以使用查询函数扩展关系:

<?php
public function comments()
{
    return $this->hasMany('Comment')->orderBy('column');
}

[评论后编辑]

<?php
class User
{
    public function comments()
    {
        return $this->hasMany('Comment');
    }
}

class Controller
{
    public function index()
    {
        $column = Input::get('orderBy', 'defaultColumn');
        $comments = User::find(1)->comments()->orderBy($column)->get();

        // use $comments in the template
    }
}

默认用户模型+简单 Controller 示例;获取评论列表时,只需应用基于Input::get()的orderBy()即可。 (一定要进行一些输入检查;))

关于php - Laravel orderBy 关系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18143061/

相关文章:

javascript - PHP 在 Jquery UI 自动完成中显示数组

javascript - 如何使用 Ajax .serialize() 数据将表单发布到 PHP?

mysql - 如何查询 laravel 中的 json 列?

php - Laravel如何获取两个结果值的平均值

php - 路由中的 Laravel 5.5 模型绑定(bind)不起作用

laravel - 在 Laravel 中使用 Eloquent 传递数据

php - 以下场景的流畅查询

php - 相同的 CSS 在不同的域上提供不同的字体大小

php - 让客户端与服务器上的进程通信

laravel 应用程序已移至另一台电脑