简体   繁体   中英

CakePHP-2.0, How can i set model relation with CakeDC-Users User model with Post model?

For Post model:

public $belongsTo = array('Users.User')

And for CakeDC-Users plugin's User model:

public $hasMany = array('Post',
        'UserDetail' => array(
            'className' => 'Users.UserDetail',
            'foreign_key' => 'user_id'));

Is that correct?

Yes it is correct. Have you at least tried it before asking?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM