withCount是一种新的laravel方法,用于返回关系计数。我正在尝试和withCount一起使用。例如:
Article::with('Comments')->withCount('Comments')->paginate();
我面临的问题是,结果见例如:
comments_count = 10
comments = []
它返回comments数组null。我不知道是否有可能得到两个结果。在不同网站的一些文章中,我看到withCount仍然有一些限制。但不确定我想做的事情是否有可能。
请帮助我了解这个问题。
谢谢,
答案 0 :(得分:2)
不需要写。
Article::withCount('Comments')->paginate();