我与一个模型的两个关联有点麻烦.. 一张小照片让我的问题更加清晰......
http://imgur.com/hxL06u2(对不起,我不能在这里发布图片)
所以我有可以写/拥有文章的用户..一个用户可以写多篇文章,一篇文章只能由一个用户拥有(有很多)..
现在用户可以喜欢其他用户的文章...这是一个拥有并且属于很多关系..我的问题是,当我创建一篇文章sql转储时:
Cannot add or update a child row: a foreign key constraint fails (`xxx`.`articles_users`,...
所以蛋糕使用错误的关系(habtm而不是有很多)因此错误的表(article_users而不是文章)
我可以使用正确的表格编写我自己的保存查询(我已经尝试了它和它的工作)但我认为这不是最好的解决方案..
有人知道更好的方法吗?谢谢!
修改:
文章模型
Ownes:
public $belongsTo = array(
'User' => array(
'className' => 'User',
'foreignKey' => 'user_id',
'conditions' => '',
'fields' => '',
'order' => ''
)
);
喜欢:
public $hasAndBelongsToMany = array('User' => array(
'className' => 'User',
'joinTable' => 'articles_users',
'foreignKey' => 'article_id',
'associationForeignKey' => 'user_id',
'unique' => 'keepExisting',
'conditions' => '',
'fields' => '',
'order' => '',
'limit' => '',
'offset' => '',
'finderQuery' => '',
'deleteQuery' => '',
'insertQuery' => ''
)
);
用户模型
public $hasMany = array(
'Article' => array(
'className' => 'Article',
'foreignKey' => 'user_id',
'dependent' => false,
'conditions' => '',
'fields' => '',
'order' => '',
'limit' => '',
'offset' => '',
'exclusive' => '',
'finderQuery' => '',
'counterQuery' => ''
)
);
public $hasAndBelongsToMany = array(
'Article' => array(
'className' => 'Article',
'joinTable' => 'articles_users',
'foreignKey' => 'user_id',
'associationForeignKey' => 'article_id',
'unique' => 'keepExisting',
'conditions' => '',
'fields' => '',
'order' => '',
'limit' => '',
'offset' => '',
'finderQuery' => '',
'deleteQuery' => '',
'insertQuery' => ''
));
答案 0 :(得分:0)
在您的用户模型中,您的关系名称/别名是相同的:文章。让它们与众不同。 根据{{3}}:但是,每个模型的别名在整个应用中必须是唯一的。