使用链接表值扩展模型。在cakephp3

时间:2015-04-11 00:20:11

标签: php mysql orm cakephp-3.0

开始学习cakephp3。 有两张桌子

Task
-id
-task_type

Task_content
-id
-task_id
-some_key
-sove_val

在结果中我想得到一些看起来像的对象:

{
id: Task.id,
type: Task.type,
title: Task_content.some_val (where some_key == 'title')
content: Task_content.some_val (where some_key == 'conent')
}

获取此对象的最佳方法是什么,只需通过" get"来获取任务?

1 个答案:

答案 0 :(得分:0)

您需要创建一个行为来处理这个问题。你可以从TranslateBehavior中激发灵感,它做了一件非常相似的事情:

https://github.com/cakephp/cakephp/blob/master/src/ORM/Behavior/TranslateBehavior.php