我在 CakePHP 网站上查看示例,特别是链接模型中使用的 hasOne。 http://book.cakephp.org/view/78/Associations-Linking-Models-Together
我的问题是,CakePHP 是否使用两个查询来构建使用 hasOne 链接的模型中返回的数据的数组结构?
取自 CakePHP://$this->User->find() 调用的示例结果。
Array
(
[User] => Array
(
[id] => 121
[name] => Gwoo the Kungwoo
[created] => 2007-05-01 10:31:01
)
[Profile] => Array
(
[id] => 12
[user_id] => 121
[skill] => Baking Cakes
[created] => 2007-05-01 10:31:01
)
)
希望这一切都有意义。