>  기사  >  백엔드 개발  >  MANY_TO_MANY php多对多表的链接 返回的数组role=null为什么

MANY_TO_MANY php多对多表的链接 返回的数组role=null为什么

WBOY
WBOY원래의
2016-06-02 11:27:541012검색

php

namespace Admin\Model;
use Think\Model\RelationModel;

class UserModel extends RelationModel {

<code> Protected $tableName = 'user';//定义主表名称 //定义关联关系 Protected $_link=array(    'role' =>array(        'mapping_type' =>MANY_TO_MANY,        'foreign_key' =>'user_id',//主表外联        'relation_key' =>'role_id',//副表外联        'relation_table' =>'tp_role_user'//中间表        )    );</code>

}
?>

namespace Admin\Controller;
use Think\Controller;
use Home\Model\UserModel;
use Think\Model\RelationModel;
class RbacController extends CommonController {
public function index(){
$result=D('User')->relation(true)->select();
var_dump($result);
die();
$this->display();
}

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.