如何在与 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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

相关文档推荐

Why can#39;t I update data in an array with foreach loop?(为什么我不能用 foreach 循环更新数组中的数据?)
Foreach for arrays inside of an array(Foreach 用于数组内的数组)
PHP array get next key/value in foreach()(PHP 数组在 foreach() 中获取下一个键/值)
Using preg_match on a multidimensional array to return key values arrays(在多维数组上使用 preg_match 返回键值数组)
php foreach as key, every two number as a group(php foreach 为key,每两个数字为一组)
Treat a PHP class that implements Iterator as an array(将实现 Iterator 的 PHP 类视为数组)