How to use pagination in laravel 5 with Raw query(如何在带有原始查询的 Laravel 5 中使用分页)
问题描述
我有一个简单的问题,但没有找到我需要的.
I have a simple question and I didn´t find what I need.
我需要计算商店列表的 t2 地理编码点之间的距离.我还需要为 WebService 分页.
I need to calculate the distance between t2 geocode points for a list of Stores. I also need it to be paginated for a WebService.
这可行,但结果中没有距离:
This works, but there is no distance in the result:
public function stores(){
return Store::paginate(10);
}
结果是:
{
total: 4661,
per_page: 10,
current_page: 6,
last_page: 467,
next_page_url: "WS_URL/stores/?page=7",
prev_page_url: "WS_URL/stores/?page=5", from: 51,
to: 60,
data: [ {
id: "51",
name: "Sprouts",
.
.
lng: "-118.359688",
lat: "33.808281",
country: "usa"
},
.
.
.
]}
但我需要这段代码工作:
But I need this code working:
public function stores(){
return DB::table('stores')
->selectRaw(' *, distance(lat, ?, lng, ?) as distance ')
->setBindings([ 41.123401,1.2409893])
->orderBy('distance')
->paginate($this->limit);
}
这是结果:
{total: 0,
per_page: 10,
current_page: 1,
last_page: 0,
next_page_url: null,
prev_page_url: null,
from: 1,
to: 10,
data: [{
id: "3686",
name: "Bon Area",
.
.
lng: "1.602016",
lat: "41.266823",
distance: "0.15091"
},
.
.
.
]
}
我需要 next_page_url
和 prev_page_url
有什么想法吗?
推荐答案
在 Eloquent 模型上使用 selectRaw
方法.
Use the selectRaw
method on the Eloquent model.
Store::selectRaw('*, distance(lat, ?, lng, ?) as distance', [$lat, $lon])
->orderBy('distance')
->paginate(10);
在这种情况下,Laravel 会向数据库询问行的数量(使用 select count(*) as aggregate from stores
)以节省您的 RAM.
In that case Laravel asks the database for the amount of rows (using select count(*) as aggregate from stores
) which saves your RAM.
这篇关于如何在带有原始查询的 Laravel 5 中使用分页的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在带有原始查询的 Laravel 5 中使用分页
基础教程推荐
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01