gpt4 book ai didi

php - Laravel Livewire 组件偏移量

转载 作者:行者123 更新时间:2023-12-01 13:10:16 25 4
gpt4 key购买 nike

我正在尝试通过在 Livewire 组件内部调用的 laravel Controller 获取一些技术人员数据。在某些情况下, Controller 返回 null,因为没有关联的技术人员。

这是我的 livewire 组件渲染 View :

class TechniciansAssociated extends Component
{
public function render()
{
$technicians = (new HomeController())->getTechnicians();

return view('livewire.dashboard.technicians-associated', [
'technicians' => $technicians,
]);
}
}

这里是家庭 Controller 调用的函数:

public function getTechnicians()
{
$customer_ids = json_decode(User::find(Auth::id())->userCustomers->customer_id,true);

$technicians_data = DB::connection('mysql')
-> select('SELECT distinct users.id, users.name, users.surname, users.lastname, users.email, users.cargo, users.photo
FROM users
INNER JOIN contractsproductsmulti AS cpm ON users.id = cpm.userId
INNER JOIN contractsproducts AS cp ON cp.id = cpm.contractproduct_id
INNER JOIN contracts AS cont ON cont.id = cp.idcontract
WHERE users.isActive = 1 AND cont.idCustomer IN (?)', $customer_ids
);

if (count($technicians_data) > 0){
return $technicians_data;
}

return null;
}

最后,在尝试获取渲染 livewire View 的主视图时出现错误

@section('content')

<section id="dash-cust-info">
<div class="row p-t-30 p-b-30">
<div class="col-md-6">
<h4>Customer info</h4>
</div>
<div class="col-md-3">
<h4>Comm_1</h4>
<div class="card no-border no-margin">
@livewire('dashboard.commercials-associated')
</div>
</div>
<div class="col-md-3">
<h4>Comm_2</h4>
<div class="card no-border no-margin">
@livewire('dashboard.technicians-associated')
</div>
</div>
</div>
....

错误:

Undefined offset: 1 (View: /......../resources/views/home.blade.php)

最佳答案

我猜 this answer 为 livewire 中的此类问题提供了很好的解释。把它留在这里,以便将来遇到此类问题的任何人都可以得到帮助。不客气

关于php - Laravel Livewire 组件偏移量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60522871/

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