溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

如何解決PHP中Laravel 關(guān)聯(lián)查詢返回錯(cuò)誤id的問題

發(fā)布時(shí)間:2021-07-02 17:10:42 來源:億速云 閱讀:130 作者:chen 欄目:開發(fā)技術(shù)

這篇文章主要介紹“如何解決PHP中Laravel 關(guān)聯(lián)查詢返回錯(cuò)誤id的問題”,在日常操作中,相信很多人在如何解決PHP中Laravel 關(guān)聯(lián)查詢返回錯(cuò)誤id的問題問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”如何解決PHP中Laravel 關(guān)聯(lián)查詢返回錯(cuò)誤id的問題”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!

在 Laravel Eloquent 中使用 join 關(guān)聯(lián)查詢,如果兩張表有名稱相同的字段,如 id,那么它的值會默認(rèn)被后來的同名字段重寫,返回不是期望的結(jié)果。例如以下關(guān)聯(lián)查詢:

PHP

$priority = Priority::rightJoin('touch', 'priorities.touch_id', '=', 'touch.id')
 ->where('priorities.type', 1)
 ->orderBy('priorities.total_score', 'desc')
 ->orderBy('touch.created_at', 'desc')
 ->get();
$priority = Priority::rightJoin('touch', 'priorities.touch_id', '=', 'touch.id')
 ->where('priorities.type', 1)
 ->orderBy('priorities.total_score', 'desc')
 ->orderBy('touch.created_at', 'desc')
 ->get();

priorities 和 touch 這兩張表都有 id 字段,如果這樣構(gòu)造查詢的話,返回的查詢結(jié)果如圖:

如何解決PHP中Laravel 關(guān)聯(lián)查詢返回錯(cuò)誤id的問題

Laravel 關(guān)聯(lián)查詢返回錯(cuò)誤的 id

這里 id 的值不是 priorities 表的 id 字段,而是 touch 表的 id 字段,如果打印出執(zhí)行的 sql 語句:

select * from `priorities` 
right join `touch` 
on `priorities`.`touch_id` = `touch`.`id` 
where `priorities`.`type` = '1' 
order by `priorities`.`total_score` desc, `touch`.`created_at` desc
select * from `priorities` 
right join `touch` 
on `priorities`.`touch_id` = `touch`.`id` 
where `priorities`.`type` = '1' 
order by `priorities`.`total_score` desc, `touch`.`created_at` desc

查詢結(jié)果如圖:

如何解決PHP中Laravel 關(guān)聯(lián)查詢返回錯(cuò)誤id的問題

使用 sql 查詢的結(jié)果實(shí)際上是對的,另外一張表重名的 id 字段被默認(rèn)命名為 id1,但是 Laravel 返回的 id 的值卻不是圖中的 id 字段,而是被重名的另外一張表的字段重寫了。

解決辦法是加一個(gè) select 方法指定字段,正確的構(gòu)造查詢語句的代碼:

PHP

$priority = Priority::select(['priorities.*', 'touch.name', 'touch.add_user'])
 ->rightJoin('touch', 'priorities.touch_id', '=', 'touch.id')
 ->where('priorities.type', 1)
 ->orderBy('priorities.total_score', 'desc')
 ->orderBy('touch.created_at', 'desc')
 ->get();
$priority = Priority::select(['priorities.*', 'touch.name', 'touch.add_user'])
 ->rightJoin('touch', 'priorities.touch_id', '=', 'touch.id')
 ->where('priorities.type', 1)
 ->orderBy('priorities.total_score', 'desc')
 ->orderBy('touch.created_at', 'desc')
 ->get();

這樣就解決了問題,那么以后就要注意了,Laravel 兩張表 join 的時(shí)候返回的字段最好要指定。

這算不算是 Laravel 的一個(gè) bug 呢?如果一個(gè)字段的值被同名的字段值重寫了,這種情況要不要報(bào)一個(gè)錯(cuò)誤出來,而不能默認(rèn)繼續(xù)執(zhí)行下去。

github 上有人也提出了同樣的問題,作者也提供了解決辦法,但并沒其他更好的方案。

Laravel 版本:5.3

鏈接:https://github.com/laravel/framework/issues/4962

到此,關(guān)于“如何解決PHP中Laravel 關(guān)聯(lián)查詢返回錯(cuò)誤id的問題”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI