Kohana3 ORM:加载键/值属性

Posted

技术标签:

【中文标题】Kohana3 ORM:加载键/值属性【英文标题】:Kohana3 ORM: loading Key/Value Attributes 【发布时间】:2010-08-17 16:05:40 【问题描述】:

我有两个 mysql 表(过于简单):

articles
- id
- description

article_attributes
- article_id
- attribute_name
- attribute_value

因此,每个article 可以拥有无​​限数量的attributes。 对于articles,我有一个 Kohana_ORM 模型

<?php class Model_Article extends ORM  ?>

在加载模型时,我希望能够访问所有属性。

例子:

<?php
$article = new Model_Article(1); // or ORM::factory('article', 1);
echo $article->description;
echo $article->attribute->foo;
echo $article->attribute->bar;
?>

有人可以指出正确的方向如何实现这一目标吗?

【问题讨论】:

【参考方案1】:

我认为您需要创建 2 个模型,每个表一个,然后定义它们之间的关系。

试试这个,

class Model_Article extends ORM

    protected $_has_many = array('attributes' => array());


class Model_Atribute extends ORM

    protected $_table_name = 'article_attributes';
    protected $_belongs_to = array('article' => array());

那么你就可以这样做了,

$article = ORM::factory('article', 1);
$article_attributes = $article->attributes->find_all();

我不知道你是否解决了这个问题,但我希望这个答案会有所帮助。

【讨论】:

【参考方案2】:

您应该阅读Kohana ORM guide。它处理一对一、一对多(您的情况)和多对多关系。这里的代码我没有复制粘贴,因为有很多。

【讨论】:

以上是关于Kohana3 ORM:加载键/值属性的主要内容,如果未能解决你的问题,请参考以下文章

Kohana3 ORM 需要澄清关系

如何在 Laravel 中为 ORM 急切加载添加多个键约束?

这个 ORM kohana3 查询有啥作用?

Kohana 3.1 都有哪些可用的 ORM 解决方案?

如何在 Kohana 3 ORM 关系中指定两个键

表的列名作为Kohana3框架中的变量