为了账号安全,请及时绑定邮箱和手机立即绑定

跪求大神~~~~TP5 模型 多对多关联 怎样对关联模型进行排序

跪求大神~~~~TP5 模型 多对多关联 怎样对关联模型进行排序

PHP
黑色空白 2018-03-25 11:42:38
class Theme extends BaseModel{    public function products(){        return $this -> belongsToMany(            'Product','theme_product','product_id','theme_id'        );    }    public static function getRecentTheme(){        $themes = self::with('Products') -> select();        return $themes;    }}Theme 当前模型Product 关联模型theme_product 中间表想对Product下的内容进行排序!想对Product下的内容进行排序!想对Product下的内容进行排序! 重要的事说3次~~~跪求大神
查看完整描述

5 回答

?
慕粉3704614

TA贡献1条经验 获得超2个赞

public function products(){
        return $this -> belongsToMany('Product','theme_product','product_id','theme_id')->order('product_id DESC');
    }


查看完整回答
2 反对 回复 2018-08-08
?
獣灬

TA贡献1条经验 获得超0个赞

$themes = self::with(['Products'=>function($query){$query->order('id desc')}]) -> select();

查看完整回答
反对 回复 2018-06-12
  • 5 回答
  • 0 关注
  • 5968 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信