多对多DataMapper CodeIgniter

时间:2012-04-03 03:15:30

标签: php codeigniter codeigniter-datamapper

我被困住了,阅读文档似乎没有帮助我。

我有一对多的工作关系,尽管我确信有一种更简单的方法,但在涉及到多对多的关系时我会陷入困境。

我尝试了很多东西,但基本上我有三张桌子:

homes:
- id
- address_id
- price
- etc

features:
- id
- name

features_homes
- id
- feature_id
- home_id

我以不同的方式设置了我的模型。

var $has_many = array(
    'feature' => array(
        'class' => 'feature',
        'other_field' => 'home',
        'join_self_as' => 'home',
        'join_other_as' => 'feature',
        'join_table' => 'features_homes'
    )
);

的基本版本
var $has_many = array('feature');

问题是我无法弄清楚如何获得与家庭相关的多条记录。

我最终得到的是单个项目,而不是一组项目。

示例输出:

[id] => 1
[address_id] => 1
[latlong] => 00.000, -00.00000
...
[feature_id] => 1
[feature_name] => Hard Wood Floors

我想要

[id] => 1
[address_id] => 1
[latlong] => 00.000, -00.00000
...
[features] => // Object of all items

1 个答案:

答案 0 :(得分:1)

通过在保存时链接它们,可以将一个对象关联到另一个对象。

你可以多次这样做:

$parent = new Parent(1);
$childA = new Child(1);
$childB = new Child(2);

$parent->save($childA); $parent->save($childB);

或通过传递数组:

$parent = new Parent(1);
$children = array(
    new Child(1),
    new Child(2),
);

$parent->save($children);