gpt4 book ai didi

php - 在 Laravel 和 Eloquent 中获取 2 个以上联接表的数据

转载 作者:行者123 更新时间:2023-11-29 21:50:20 26 4
gpt4 key购买 nike

这是我的表格。

╔════════════╤═╤══════════╤═╤═══════╗
║ Insurances │ │ Devices │ │ Brands║
╠════════════╪═╪══════════╪═╪═══════╣
║ id │ │ id │ │ id ║
╟────────────┼─┼──────────┼─┼───────╢
║ IMEI │ │ type │ │ name ║
╟────────────┼─┼──────────┼─┼───────╢
║ device_id │ │ name │ │ ║
╟────────────┼─┼──────────┼─┼───────╢
║ user_id │ │ brand_id │ │ ║
╚════════════╧═╧══════════╧═╧═══════╝

现在我想在表格中显示结果数据

╔══════╤════════════╤═════════════╤══════════════╤═════════╗
║ IMEI │ brand_name │ device_name │ device_price │ user_id ║
╚══════╧════════════╧═════════════╧══════════════╧═════════╝

想象一下,如果是 AJAX,我必须在将数据发送到 View 之前连接表。我已经定义了模型中的关系。但是使用 with() 方法我只能同时调用其中的 2 个,但我不知道如何在 View 中调用它们。

是否有办法不使用普通的DB::class而只使用eloquent?

最佳答案

您应该能够在 Controller 中执行类似的操作,以便在 View 中获得结果。

$insurance = Insurance::with('device.brand')->find($id);

return json_encode([
'imei' => $insurance->IMEI,
'brand_name' => $insurance->device~>brand->name,
'device_name' => $insurance->device->name,
'device_price' => $insurance->device->price
'user_id' => $insurance->user_id

]);

关于php - 在 Laravel 和 Eloquent 中获取 2 个以上联接表的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33709206/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com