belongsTomany 是多对多的关系 表数据是多对多的情况下使用
hasMany是一对多的关系
belongsToMany('关联模型名','中间表名','外键名','当前模型关联键
名',['模型别名定义'])
public function products()
{
return $this->belongsToMany('Product','theme_product',
'product_id','theme_id');
}
hasMany('关联模型名','外键名','主键名',['模型别名定义']);
例如一篇文章可以有多个评论
<?php
namespace app\index\model;
use think\Model;
class Article extends Model
{
public function comments()
{
return $this->hasMany('Comment','art_id');
}
}