4
    public function getIndex()
        {


// Get all the blog posts
        /*$posts = Post::with(array(
            'author' => function($query)
            {
                $query->withTrashed();
            },
        ))->orderBy('created_at', 'DESC')->paginate(10);*/


        $posts =Post::with(array('search' => function($query)
        {
            $query->where('title', 'like', '%Lorem ipsum%')->withTrashed();
        }))->orderBy('created_at', 'DESC')->paginate(10);


        // Show the page
        return View::make('frontend/blog/index', compact('posts'));

    }

这是我在 Controller 中的代码。我正在使用 GitHub 上提供的入门包。

我为这个控制器创建了这个模型

public function search()
{
    return $this->belongsTo('Post', 'user_id');
}

问题是它没有获取标题包含“Lorem ipsum”的结果。它只是打印表中的所有值。

我如何实现这一点以仅获取包含我的标签/关键字的值。我这样做是为了向 laravel 站点添加搜索选项

4

3 回答 3

10

为什么不为此创建一个范围?你读过范围文档吗?这是一个示例,我将如何实现这一目标:

范围:

public function scopeTagged($query, $tag)
{
    return $query->where('title', 'LIKE', '%' . $tag . '%');
}

并修改您的操作:

public function getIndex()

{

    $posts = Post::tagged($lorem_ipsum)->withTrashed()->orderBy('created_at', 'DESC')->paginate(10);

    // Show the page
    return View::make('frontend/blog/index', compact('posts'));

}
于 2014-03-31T20:05:31.920 回答
1

尝试这个...

    $posts =Post::with(array('search' => function($query)
    {
        $query->raw_where("title LIKE '%Lorem ipsum%")->withTrashed();
    }))->orderBy('created_at', 'DESC')->paginate(10);

或者类似的东西......

$search 是您的输入

 Post::raw_where("match (`title`) against (?)", array($search))
    ->orderBy('created_at', 'DESC')->paginate(10);

编辑

那这个呢?

 Post::where(DB::raw('MATCH(`title`)'),'AGAINST', DB::raw('("+'.implode(' +',$search).'" IN BOOLEAN MODE)->orderBy('created_at', 'DESC')->paginate(10);
于 2013-07-02T17:38:07.473 回答
0

我认为这是 Laravel Eager 加载约束实现的问题:

参考:-

https://github.com/laravel/laravel/pull/1069

https://github.com/laravel/laravel/pull/946
于 2013-07-03T10:59:40.143 回答