tp3.2关联模型 BELONGS_TO
Posted 信仰啊
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tp3.2关联模型 BELONGS_TO相关的知识,希望对你有一定的参考价值。
<?php
namespace Home\Model;
use Think\Model\RelationModel;
class AttenModel extends RelationModel {
protected $tableName = ‘attention‘;
protected $_link = array(
‘BabyUser‘ => array(
‘mapping_type‘ => self::BELONGS_TO,
‘foreign_key‘ => ‘bid‘,
),
);
}
以上是关于tp3.2关联模型 BELONGS_TO的主要内容,如果未能解决你的问题,请参考以下文章
Rails 5:将belongs_to关联与自定义名称添加到模型和迁移