首页 > 代码库 > TP5中关联模型的使用详解

TP5中关联模型的使用详解

首先是model里,举个例子,user.php
<?php
namespace app\rbac\model;

use think\Model;
class User extends Model{
    
   public function roleusers()
    {
             return $this->hasMany(‘RoleUser‘,‘pms_user_id‘,‘id‘);
    }
}
在控制器里调用
$data = http://www.mamicode.com/Loader::model(‘User‘)->get(2)->roleusers;
这句话的意思是查询user表里id等于2的用户在roleuser里的数据,如果还想继续在这个结果上进行条件查询,可以用
$data = http://www.mamicode.com/Loader::model(‘User‘)->get(2)->roleusers()->where(‘status‘,1)->select();
这样就能查询出来自己想要的结果。
注意:tp5里的all,select,find查询方法都是对象。需遍历输出。

TP5中关联模型的使用详解