第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

當(dāng) {relations}_count 不在數(shù)據(jù)庫表中時(shí)如何對(duì) {relations}

當(dāng) {relations}_count 不在數(shù)據(jù)庫表中時(shí)如何對(duì) {relations}

PHP
Cats萌萌 2023-10-01 15:42:14
我正在執(zhí)行 Laravel 任務(wù),我想對(duì)與另一個(gè)表相關(guān)的表進(jìn)行排序。我在這里閱讀了文檔: https: //laravel.com/docs/5.4/eloquent-relationships#counting-lated-models 我的代碼:$addonCategories = AddonCategory::withCount('addons')->sortable()->orderBy('id', 'DESC')->with('addons')->paginate(20);return view('admin.addonCategories', array(            'addonCategories' => $addonCategories,        ));插件類別控制器:class AddonCategory extends Model{    use Sortable;    protected $casts = ['addons_count' => 'integer'];    public $sortable = ['name', 'type', 'addons_count', 'created_at'];    public function items()    {        return $this->belongsToMany(Item::class);    }    public function addons()    {        return $this->hasMany('App\Addon');    }}addonCategories.blade.php:<th>@sortablelink('addons_count', __('storeDashboard.acpTableNOA'))</th>當(dāng)我使用 sortable 時(shí),出現(xiàn)錯(cuò)誤SQLSTATE[42S22]: Column not found: 1054 Unknown column 'addons_count' in 'order clause' 我認(rèn)為這是因?yàn)閿?shù)據(jù)庫表中沒有addons_count。那么如何像這樣使用 {relations}_count 進(jìn)行排序呢?
查看完整描述

1 回答

?
幕布斯6054654

TA貢獻(xiàn)1876條經(jīng)驗(yàn) 獲得超7個(gè)贊

首先,您似乎正在使用該庫: https:?//github.com/Kyslik/column-sortable

$sortable您中的屬性與數(shù)組AddonCategory元素和表的列名相匹配。因此,您收到錯(cuò)誤:SQLSTATE[42S22]: Column not found: 1054 Unknown column 'addons_count' in 'order clause'

addons_count鑒于MySQL 表中不存在該列addon_category,并且由 laravel 作為屬性添加,您需要實(shí)現(xiàn)Aliasing,這是在庫的文檔中指定的

您的最終模型將如下:

class AddonCategory extends Model

{

? ? use Sortable;

? ? protected $casts = ['addons_count' => 'integer'];

? ? public $sortable = ['name', 'type', 'created_at'];

? ? public $sortableAs = ['addons_count'];


? ? public function items()

? ? {

? ? ? ? return $this->belongsToMany(Item::class);

? ? }


? ? public function addons()

? ? {

? ? ? ? return $this->hasMany('App\Addon');

? ? }

}

其余的實(shí)施都很好。

查看完整回答
反對(duì) 回復(fù) 2023-10-01
  • 1 回答
  • 0 關(guān)注
  • 97 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)