本文介绍了如何将参数绑定到 Laravel 中用于模型的原始数据库查询?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

重新,

我有以下查询:

$property =
    Property::select(
        DB::raw("title, lat, lng, (
            3959 * acos(
                cos( radians(:lat) ) *
                cos( radians( lat ) ) *
                cos( radians( lng ) - radians(:lng) ) +
                sin( radians(:lat) ) *
                sin( radians( lat ) )
            )
        ) AS distance", ["lat" => $lat, "lng" => $lng, "lat" => $lat])
    )
    ->having("distance", "<", $radius)
    ->orderBy("distance")
    ->take(20)
    ->get();

它不起作用:无效的参数号:混合命名和位置参数.

有人知道技巧或解决方法吗(我显然可以编写完整的查询,但更喜欢使用 fluent builder).

Does anyone know a trick or a workaround (I can obviously write the full query but prefer to use fluent builder).

推荐答案

好的,经过一些实验,这是我想出的解决方案:

OK, after some experimenting, here's the solution that I came up with:

$property =
    Property::select(
        DB::raw("title, lat, lng, (
            3959 * acos(
                cos( radians(  ?  ) ) *
                cos( radians( lat ) ) *
                cos( radians( lng ) - radians(?) ) +
                sin( radians(  ?  ) ) *
                sin( radians( lat ) )
            )
       ) AS distance")
    )
    ->having("distance", "<", "?")
    ->orderBy("distance")
    ->take(20)
    ->setBindings([$lat, $lng, $lat,  $radius])
    ->get();

基本上,必须在查询中调用 setBindings.希望这被记录在案!

Basically, setBindings has to be called on the query. Wish this was documented!

这篇关于如何将参数绑定到 Laravel 中用于模型的原始数据库查询?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-26 07:31