码迷,mamicode.com
首页 > 其他好文 > 详细

Laravel5如何向闭合函数内传递参数 where function 传参

时间:2019-11-28 10:37:29      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:传递参数   _id   内部使用   解决   query   res   title   color   fir   

如上,怎么将$title 像$query一样,在函数内部使用?

$result = UserMenus::with([menu=>function($query){
$query->where(title,$title);
}])->where(user_id,$userId)->first();

 

解决:

$result = UserMenus::with([menu=>function($query) use ($title){
$query->where(title,$title);
}])->where(user_id,$userId)->first();


或者
$result = UserMenus::with(function($query) use ($title){
$query->where(‘title‘,$title);
})->where(‘user_id‘,$userId)->first();

 

 

 

 

Laravel5如何向闭合函数内传递参数 where function 传参

标签:传递参数   _id   内部使用   解决   query   res   title   color   fir   

原文地址:https://www.cnblogs.com/jasonLiu2018/p/11947285.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!