fastadmin with 和 filed 合用导致field失效

本文探讨了在ThinkPHP5框架FastAdmin中,如何避免`with`预加载所有字段导致`field`指定字段失效的问题。提供了解决方案,即调整字段筛选在`with`之前,以及使用匿名函数展示关联表的特定字段实例。
摘要由CSDN通过智能技术生成

记录:fastadmin tp5 with 和 filed 合用导致field失效问题。

tp5中with使用时会将field中指定的字段给覆盖掉,变成全部字段。
解决方案:将field放在with之前使用
    //获取排序靠前的8个商品
	public function getFreeList()
    {
        return $this
            ->field('id,category_id,carlevel_id,name,zhidaojia,image,images')
            ->with(['category', 'carlevel'])
            ->where('fa_car.status', '=', 'normal')
            ->order(['fa_car.weigh' => 'desc'])
            ->limit(8)
            ->select();
    }
若关联预载入的表也要显示部分字段,可使用匿名函数实现
    //获取排序靠前的8个商品
	public function getFreeList()
    {
        return $this
            ->field('id,category_id,carlevel_id,name,zhidaojia,image,images')
            ->with(['category'=>function($query){
                $query->withField('id,pid,name,minprice,maxprice,image,status');
            }, 'carlevel'=>function($query){
                $query->withField('id,pid,name,image,status');
            }])
            ->where('fa_car.status', '=', 'normal')
            ->order(['fa_car.weigh' => 'desc'])
            ->limit(8)
            ->select();
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值