3

我使用 CakePHP 有一段时间了,遇到了一个问题,我需要检查模型是否与其他模型相关联。是否有任何内置功能?

例子

BLOG
 -- hasMany COMMENTS
 -- hasOne Profile

COMMENTS
 -- belongsTo BLOG

我正在寻找一些功能,如:

hasAssociation('blog', 'comments'); //should return true
hasAssociation('blog', 'whatever'); //should return false
hasAssociation('profile', 'blog'); //should return false
hasAssociation('blog', 'profile'); //should return true

如果没有这样的功能,我该如何编写自己的功能?我没有逻辑。请建议。

4

1 回答 1

3

您可以使用函数 getAssociated

$this->yourModel->getAssociated();

并返回相关的模型

http://book.cakephp.org/2.0/en/models/additional-methods-and-properties.html#model-getassociated-string-type-null

于 2013-08-02T08:56:36.477 回答