在thinkphp中怎么进行三个表关联
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在thinkphp中怎么进行三个表关联相关的知识,希望对你有一定的参考价值。
<?phpnamespace Dome\\Model;
use Think\\Model\\ViewModel;
Class AbcViewModel extends ViewModel
protected $viewField=array(
\'A\'=>array(\'id\',\'xx\',\'xx\'),
\'B\'=>array(\'bx\',\'bxx\',\'_on\'=>\'B.pid=A.pid\'),
\'C\'=>array(\'cx\',\'cxx\',\'_on\'=>\'C.pid=A.pid\'),
);
参考技术A 用模型还是JOIN或者VIEW
以上是关于在thinkphp中怎么进行三个表关联的主要内容,如果未能解决你的问题,请参考以下文章