现在有三个表
post
--id
--post_data
TermRelationships
--object_id
--term_taxonomy_id
Terms
--term_id
--name
其中post的id对应TermRelationships的object_id
terms的term_id对应term_taxonomy_id。
我在Terms的模型当中设置protected $primaryKey = 'term_id';
我想通过post获得terms的name,设置了belongsToMany('TermRelationships','Terms','term_taxonomy_id','term_id')
查询不出来。
请问是为什么?是我第三个参数和第四个参数传递的不对吗?