CakePHP插件模型关联不起作用

时间:2012-09-13 01:20:14

标签: cakephp cakephp-2.0 cakephp-2.1 cakephp-2.2

场景:我有一个CakePHP应用程序,带有一个名为Fruit的插件。 Fruit Plugin包含一个指向TagsController.php的路由,其索引为Action,指向index.ctp

标签模型有一个关联。 USER_ID

问题:即使我在模型中添加了一个连接选项 - > find('all'... ['User']索引未定义。我不知道该怎么做,这是我的代码。 ...

TagsController

public function index($ajax = false) {
    $this->Tag->recursive = 2;
    $tags = $this->Tag->find('all', array('conditions' => array('User.id' => $this->Auth->user('id')), 'joins'=>array(
    array(
         'table'=>'users',
         'alias'=>'User',             
         'conditions'=>array(
              'User.id=Tag.user_id'
         )
    ),
    )));

    print_r($tags);

    $this->set('tags', $this->paginate());

    if($ajax == 'ajax')
    {
        $this->layout = 'ajax';
    }
}

标签模型

App::uses('FruitAppModel', 'Fruit.Model');
class Tag extends FruitAppModel {

public $name = 'Tag';
public $uses = array('User');
public $belongsTo = array(
    'User' => array(

        'className' => 'User',
        'foreignKey' => 'user_id',
        'conditions' => '',
        'fields' => '',
        'order' => ''
    )
);

用户模型

App::uses('AppModel', 'Model');

class User extends AppModel {

public $name = 'User';
public $displayField = 'username';

public $hasMany = array(        
    'Tag' => array(
        'className' => 'Fruit.Tag',
        'foreignKey' => 'tag_id',
        'dependent' => false,
        'conditions' => '',
        'fields' => '',
        'order' => '',
        'limit' => '',
        'offset' => '',
        'exclusive' => '',
        'finderQuery' => '',
        'counterQuery' => ''
    ),

);

我现在已经坚持这个问题好几个小时了,所以对我能尝试的任何新想法都非常感激。我已经梳理了stackoverflow非常好,我只是在圈子里,我需要一双新鲜的眼睛。任何想法都会很棒。

谢谢!

  • 杰夫

1 个答案:

答案 0 :(得分:2)

我认为你已经尝试了很多并且使它更复杂,尝试这个代码它会给你想要的输出。

用户模型中的

public $hasMany = array(        
'Tag' => array(
    'className' => 'Fruit.Tag',
    'foreignKey' => 'user_id',
    'dependent' => false,
    'conditions' => '',
    'fields' => '',
    'order' => '',
    'limit' => '',
    'offset' => '',
    'exclusive' => '',
    'finderQuery' => '',
    'counterQuery' => ''
),
控制器中的

: -

$this->Tag->recursive = 1;

 $this->paginate = array(
    'conditions' => array('Tag.user_id' => $this->Auth->user('id'))
);
$data = $this->paginate('Tag');
pr($data);
$this->set(compact('data'));