我有产品模型,商店模型,并且产品属于商店, 在商店模型中,我有这个:
public function scopeWithDistance($query,$lat,$lng){
$q = $query;
if($lat != 0 && $lng != 0){
$raw = 'floor((floor(3959 * acos(cos(radians(:lat1)) * cos(radians(lat))
* cos(radians(lng) - radians(:lng))
+ sin(radians(:lng2)) * sin(radians(lat)))
)) * 1.609344) AS distance';
return $query->selectRaw($raw, [
'lat1' => $lat,
'lng' => $lng,
'lat2' => $lat,
]);
}
return $q;
}
我可以轻松获得Store Attrs以及计算出的距离:
App\Store::withDistance(20.6008362,-100.3966416)->get();
修补。
但是当我运行查询以尝试通过我的产品模型获取Store :: withDistance时,它不会返回距离字段:(
我的查询:
$query = Product::whereHas('mm_product')
->with(['media', 'category', 'master_category', 'store.user.user_data', 'store.user.media', 'tag'])
->whereHas('store', function ($q) use ($state_id, $shop_id, $lat, $lng) {
if ($state_id && $shop_id == 0) {
$q->where(function ($q) use ($state_id, $lat, $lng) {
$q->whereNotNull('lat')->whereNotNull('lng')->where('state_id', $state_id)->withDistance($lat, $lng);
});
}
});
请帮助我:'(
编辑:我这样做的原因是这样,然后我想基于距离计算对结果进行orderBy和分页。
答案 0 :(得分:1)
您必须在急切的负载中添加距离搜索功能,然后它将作为字段返回。当添加到whereHas
时,它仅过滤结果。因此更好地重用,您可以像这样
在Store
模型中定义此功能(我更改了hasrsine代码)
public static function haversine($coordinates)
{
return '(6371 * acos(cos(radians(' . $coordinates['latitude'] . '))
* cos(radians(`lat`))
* cos(radians(`lng`)
- radians(' . $coordinates['longitude'] . '))
+ sin(radians(' . $coordinates['latitude'] . '))
* sin(radians(`latitude`))))';
}
public function scopeWithinDistance($query, $haversine, $radius = 5)
{
return $query->select('id', 'user_id')
->selectRaw("{$haversine} AS distance")
->whereRaw("{$haversine} < ?", [$radius])
->orderBy('distance');
}
现在像这样在查询中使用它
$haversine = Store::haversine(['latitude' => '20.6008362', 'longitude' => '-100.3966416']);
$query = Product::whereHas('mm_product')
->with(['media', 'category', 'master_category','store' => function($q) use($haversine){
$q->selectRaw("*, {$haversine} AS distance");
},'store.user.user_data', 'store.user.media', 'tag'])
->whereHas('store', function ($q) use ($state_id, $shop_id, $haversine) {
if ($state_id && $shop_id == 0) {
$q->where(function ($q) use ($state_id, $haversine) {
$q->whereNotNull('lat')->whereNotNull('lng')
->where('state_id', $state_id)
->withinDistance($haversine);
});
}
});
它将以英里为单位提供距离,如果要以公里为单位,则将其乘以1.60934