1

getCanSeeAttribute在帖子模型中有功能,我尝试使用分页获取帖子filter()

$posts = Post::where(function ($query1) use ($users) {
            $query1->where('posted_type', 'user')->whereIn('posted_id', $users);
        })
        ->orWhere(function ($query2) use ($stores) {
            $query2->where('posted_type', 'store')->whereIn('posted_id', $stores);
        })
        ->with('likes', 'postable')
        ->withCount('comments', 'likes')
        ->latest()->paginate($paginate)->filter(function($post){
            return $post->can_see == true;
        });

问题是当我使用过滤器时,它只获取数据属性,但我需要所有分页属性。

first_page_url": "http://localhost:8000/api/timeline?page=1",
"from": 1,
"last_page": 1,
"last_page_url": "http://localhost:8000/api/timeline?page=1",
"next_page_url": null,
"path": "http://localhost:8000/api/timeline",
"per_page": 10,
"prev_page_url": null,
"to": 6,
"total": 6

can_see 不是表中的列,它是访问器

4

2 回答 2

1

首先,我希望你知道你在做什么。假设您需要获得can_see字段设置为 true 的结果,您应该使用:

$posts = Post::where('can_see', true)
         ->where(function($q) {
            $q->where(function ($query1) use ($users) {
              $query1->where('posted_type', 'user')->whereIn('posted_id', $users);
            })->orWhere(function ($query2) use ($stores) {
               $query2->where('posted_type', 'store')->whereIn('posted_id', $stores);
            })
        })->with('likes', 'postable')
        ->withCount('comments', 'likes')
        ->latest()
        ->paginate($paginate);

如您所见,我另外将 (where .. orWhere) 包裹在额外的where闭包中,以确保生成有效的查询。

否则你应该使用:

$posts = Post::where(function($q) {
            $q->where(function ($query1) use ($users) {
              $query1->where('posted_type', 'user')->whereIn('posted_id', $users);
            })->orWhere(function ($query2) use ($stores) {
               $query2->where('posted_type', 'store')->whereIn('posted_id', $stores);
            })
        })->with('likes', 'postable')
        ->withCount('comments', 'likes')
        ->latest()
        ->paginate($paginate);

$posts = $posts->setCollection($posts->getCollection()->filter(function($post){
        return $post->can_see == true;
   })
);

但是,在您的情况下,第二种方式不太可能更好。假设您有 100 万条匹配记录,然后其中can_see设置为 true,其余设置为 false,这将导致您将从数据库中获取 100 万条记录,然后您将只过滤其中的 10 条成为您应用程序的性能杀手。

于 2018-09-25T15:24:03.853 回答
0

您可以添加以下代码,定义后$post

$post->appends($request->only('posted_type'));
于 2019-06-17T05:15:51.877 回答