Retrieve Laravel Model results based on multiple ID's

回眸只為那壹抹淺笑 提交于 2019-12-03 02:50:06

问题


I have implemented ZendSearch into my Laravel application. I am using it as my search engine where users will type a search word, and then ZendSearch will return me an array of results ordered by relevance. However, the array that ZendSearch returns, only returns my record ID's (it doesn't return any of the actual record information).

What would next be the correct way to query my Model to retrieve the results based on the ZendSearch array results which is just an array of ID's ordered based on relevance.

I know of Model::find(1) which would return my record with an ID of 1, but how can I feed that find() method an array of ID's that I want to be returned in the order I am giving it.


回答1:


That's simple. Use findMany:

$models = Model::findMany([1, 2, 3]);

By the way, you can also pass an array to find() and it will internally call findMany:

$models = Model::find([1, 2, 3]);

Under the hood it just does a whereIn so you could do that too:

$models = Model::whereIn('id', [1, 2, 3])->get();


来源:https://stackoverflow.com/questions/28509985/retrieve-laravel-model-results-based-on-multiple-ids

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!