我使用 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
如果没有这样的功能,我该如何编写自己的功能?我没有逻辑。请建议。