兹有用户表user和评论表comment

thinkphp一对多关系-LMLPHP

  • 一对一
public function returnmany()
{
return $this->hasOne('commnet','uid','user_id');
}
#uid 是comment表里的内容;user_id是user表里的内容
  • 一对多
public function comm()
{
return $this->hasMany('commnet','uid','user_id');
}
#uid 是comment表里的内容;user_id是user表里的内容

可以通过访问属性的方法获取comm的返回值

thinkphp一对多关系-LMLPHP

thinkphp一对多关系-LMLPHP

一对多之新增

thinkphp一对多关系-LMLPHP

一对多批量新增

thinkphp一对多关系-LMLPHP

关系模型

thinkphp一对多关系-LMLPHP

thinkphp一对多关系-LMLPHP

关联过滤查询

thinkphp一对多关系-LMLPHP

根据字段查找

thinkphp一对多关系-LMLPHP

把查询语句作为对象操作的方法

thinkphp一对多关系-LMLPHP

  • 更新--改变模型的属性

thinkphp一对多关系-LMLPHP

  • 构造器

thinkphp一对多关系-LMLPHP

  • 删除

thinkphp一对多关系-LMLPHP

  • 核武器级的删除

thinkphp一对多关系-LMLPHP

05-11 19:22