1

我是 CodeIgniter 的新手。

我为比萨表和配料表创建了模型。表由附加的 Pizza_Ingredients 表连接(它的多对多关系)。

我的模型:

<?php

class Pizza extends DataMapper {

    var $table = 'Pizza';

    var $has_many = 
        array(
        'ingredients' => 
            array(
            'class' => 'ingredients',
            'join_table' => 'pizza_ingredients'
            )
        );
}

class Ingredients extends DataMapper {

    var $table = 'Ingredients';
    var $has_many = 
        array(
            'pizza' => 
                array(
                'class' => 'pizza',
                'join_table' => 'pizza_ingredients'
             )
        );
}

?>

当我使用该代码获取数据时:

$pm = new Pizza();
$pm->include_related('ingredients');
$array = $pm->get();

我正在获取具有重复 Pizza 值的数组(它看起来只是 sql 查询结果)。

margherita    | cheese
vegetariana   | vegetable 1
vegetariana   | vegetable 2

我不能像这样在数组的“foreach”中简单地生成 html 表。

我想得到对象,它的结构如下:

margherita:
 - cheese

vegetariana:
 - vegetable 1
 - vegetable 2

这使我可以在“披萨循环”内与其他 foreach 循环(带配料)一起制作 foreach 循环(带比萨饼)。

我必须用 PHP 写这个,或者 CodeIgniter/DataMapper 可以为我做更多的事情吗?

有什么建议吗?

4

3 回答 3

1

我只是停留在同一个答案...

所以,搜索 CI Datamapper DOC,我发现了一些有用的东西(http://datamapper.wanwizard.eu/pages/getadvanced.html),看看第一个例子!

翻译成你的问题,应该是这样的:

    // Create pizza

    $pm = new Pizza();

    // DO NOT USE include_related to Ingredients Here !!!
    //Datamapper will DO THIS for you!
    // Remember to declare your Ingredients class in singular, not plural
    // So your class should be in singular -> Ingredient
    // And your DB Table should be in plural -> Ingredients
    // As CI Datamapper Guide teaches :)

    // Get all pizzas

    $pm->get();

    // Loop through all pizzas

    foreach ($pm as $pizza)
    {

    // Print the actual pizza name

            echo $pizza->name."<br/>";

            // Get the current pizza's Ingredients  <- Here is the magic comes!

            $pizza->ingredient->get();

            // Print all current pizza's Ingredients

            foreach ($pizza->ingredient as $ingredient)
            {
                    echo $ingredient->name."<br/>";
            }
    }

这对我来说效果很好,但它会继续多次访问数据库,实际上,你的数据库包含的每个披萨一次。

如果使用 CI Datamapper 的某些解决方案对 DB 的请求更少,我真的很感激。

找到了请分享!

于 2012-10-29T01:09:22.183 回答
0

为什么不使用中间表来分解多对多关系。似乎更容易管理。喜欢:

TABLE pizza_ingredients
   id
   pizza_id
   ingredient_id

然后你可以尝试这样的事情:

foreach($pizzas as $pizza)
    $pizza->ingredients = $this->get_ingredients($pizza->id);
于 2012-10-25T11:18:29.260 回答
-1

您可以设置一个变量,即您当前正在吃的披萨,并在下一次迭代中检查它。您的格式和其他内容会有所不同,但这会给您一个想法。

foreach ($pizza as $k=>$p) {
    if ($last_pizza === $p->pizza) {
        echo "<tr>
            <td>
            </td>
        </tr>
        <tr>
            <td>
                $p->cheese
            </td>
        </tr>";
        $last_pizza = $p->pizza;
    }else{
        echo "<tr>
            <td>
                $p->pizza
            </td>
        </tr>
        <tr>
            <td>
                $p->cheese
            </td>
        </tr>";
        $last_pizza = $p->pizza;
    }
}
于 2012-10-25T05:52:35.117 回答