首页  >  问答  >  正文

传递Laravel Eloquent查询参数的动态方法

<p>我有以下以字符串格式表示的查询参数</p> <pre class="brush:php;toolbar:false;">$query = '->whereIn('short_code', ["9999"])->whereBetween('request_timestamp', [request('startTime'), request('endTime')])';</pre> <p>我该如何将它传递给Eloquent?我试图实现类似这样的效果</p> <pre class="brush:php;toolbar:false;">InboundMessage::query()->{$query};</pre> <p>我得到了以下错误</p> <pre class="brush:php;toolbar:false;">属性[->whereIn('short_code', ["9999"])->whereBetween('request_timestamp', [request('startTime'), request('endTime')])]在Eloquent构建器实例上不存在。</pre>
P粉879517403P粉879517403437 天前423

全部回复(1)我来回复

  • P粉600402085

    P粉6004020852023-09-01 10:40:21

    上述查询的问题在于它看起来像这样

    InboundMessage::query()->->whereIn('short_code', ["9999"])..

    由于您在查询构建器和$query字符串中都使用了->。所以只需调整您的$query为

    $query = 'whereIn('short_code', ["9999"])->whereBetween('request_timestamp', [request('startTime'), request('endTime')])';

    回复
    0
  • 取消回复