如何在与 Laravel Eloquent 方法 WITH 连接的元素上使用 orderby

How to use orderby on element that was joined with Laravel Eloquent method WITH(如何在与 Laravel Eloquent 方法 WITH 连接的元素上使用 orderby)
本文介绍了如何在与 Laravel Eloquent 方法 WITH 连接的元素上使用 orderby的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

问题是查询找不到specific_method(specific_method, specific_model,SpecificModel,specificMethod etc...),应该与Laravel Eloquent中的WITH方法连接.任何想法如何解决它?我的代码:

The problem is that the query can't find the specific_method(specific_method, specific_model,SpecificModel,specificMethod etc...), that should been joined with the method WITH from Laravel Eloquent. Any ideas how to solve it? My code:

//SpecificModel
<?php
namespace AppModels;
use IlluminateDatabaseEloquentModel;

class SpecificModel extends Model {

    protected $guard_name = 'web';
    protected $table = 'SpecificTable';
    protected $guarded = ['id'];

    public function specificMethod(){
        return $this->belongsTo('AppModelsAnotherModel','AnotherModel_id');
    }
}


//AnotherModel
<?php
namespace AppModels;
use IlluminateDatabaseEloquentModel;

class AnotherModel extends Model {

    protected $guard_name = 'web';
    protected $table = 'AnotherTable';
    protected $guarded = ['id'];
}

//Query method
$model = app('AppModelsSpecificModel');
$query = $model::with('specificMethod:id,title');
$query = $query->orderBy('specific_method.title','desc');
return $query->get();


//Error
Error: SQLSTATE[42S22]: Column not found: 1054 Unknown column 
'"specific_method.title"' in 'order clause' (SQL: select * from 
`SpecificModel` where `SpecificModel`.`deleted_at` is null order by 
`specific_method`.`title` desc)

推荐答案

发生这种情况是因为belongsTo 关系没有像您期望的那样执行join 查询(正如您从错误中看到的得到).它执行另一个查询以获取相关模型.因此,您将无法通过相关模型列订购原始模型.

This happens because the belongsTo relationship does not execute a join query as you expect it to (as you can see from the error you get). It executes another query to get the related model(s). As such you will not be able to order the original model by related models columns.

基本上,会发生 2 个查询:

Basically, 2 queries happen:

  1. 使用 SELECT * from originalModel ...*

使用 SELECT * from relatedModel where in id (originalModelForeignKeys)

然后 Laravel 做了一些魔术,将第二个查询中的模型附加到第一个查询中的正确模型上.

Then Laravel does some magic and attaches the models from the 2nd query to the correct models from the first query.

您需要执行实际的join能够以您想要的方式订购.

You will need to perform an actual join to be able to order the way you want it to.

这篇关于如何在与 Laravel Eloquent 方法 WITH 连接的元素上使用 orderby的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以
PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的
mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)
Laravel Gmail Configuration Error(Laravel Gmail 配置错误)
Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)
Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)