5

我是 laravel 的初学者,我做了一个搜索查询,我也有标签要搜索,但我不知道如何搜索它

查询看起来像这样

public function post_search()
    {
        $tags = Input::get('tag_id');

        $search =  $this->user
                        ->with('tag')
                        ->where('username', 'LIKE', '%'.Input::get('username').'%')
                        ->where('first_name', 'LIKE', '%'.Input::get('first_name').'%')
                        ->where('last_name', 'LIKE', '%'.Input::get('last_name').'%')
                        ->where('group_id', 'LIKE', '%'.Input::get('group_id').'%')
                        ->where('tag_id', 'LIKE', '%'.$tags.'%')
                        ->paginate(22);

        $this->layout->title   = "Search results";
        $this->layout->content = View::make("home.results")
                               ->with('users', $search);

    }

tag_id 输入返回以下内容

array(5) {
  [0]=>
  string(2) "20"
  [1]=>
  string(1) "1"
  [2]=>
  string(1) "3"
  [3]=>
  string(1) "2"
  [4]=>
  string(2) "15"
}

请有人给我一个提示,我可以如何在我的搜索中实现标签?

谢谢

编辑

我收到带有标签的此错误

Array to string conversion
4

1 回答 1

4

在您的查询中,您有

->where('tag_id', 'LIKE', '%'.$tags.'%')

and$tags是一个数组,但你使用了它,like所以你得到了 Array to string conversion错误。你应该使用

->whereIn( 'tag_id', $tags );

Laravel 文档。

于 2013-05-27T16:28:19.403 回答