gpt4 book ai didi

Laravel - undefined variable : request

转载 作者:行者123 更新时间:2023-12-05 08:52:54 29 4
gpt4 key购买 nike

我的 http://localhost:8888/VGL/public/category/18?sty=3

dd($request->sty); 等于 3

但是我把 $request->sty 放在 whereHas

Undefined variable: request

public function show(Request $request, $id)
{
$products = Product::with('features')
->whereHas('features', function ($q) {
return $q->where('id', $request->sty);
})
->where('category_id',17)
->get();
}

最佳答案

试试这个

如果你想在 where 闭包 中使用任何变量,那么你必须在 use($variable) 中传递该变量

public function show(Request $request, $id)
{
$products = Product::with('features')
->whereHas('features', function ($q) use($request) {
return $q->where('id', $request->sty);
})
->where('category_id',17)
->get();
}

关于Laravel - undefined variable : request,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55254181/

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