thinkphp5.1多模型关联排序问题

 //获取产品详情
    public static function getProductDetail($id){
        $product = self::with(['imgs'=>function($query){
            $query->with('imgUrl')->order('order', 'ASC');
        },'properties'])->find($id);
        return $product;
    }

 

你可能感兴趣的:(php学习记录)