如何在ng-repeat中进行ng-repeat?

时间:2017-02-23 15:15:46

标签: angularjs angularjs-ng-repeat ng-repeat

嵌套ng-repeat时遇到问题。我是 AngularJS 的新手,所以也许我不理解这个概念。

我需要显示GROUPS,其中我需要显示GROUP_ID GROUP {IT}的ITEMS。

我知道如何在 PHP 中执行此操作,但我需要在 AngularJS 中执行此操作。

这就是我在 PHP 中的意思:

$result=mysqli_query($mysqli, "SELECT * FROM groups ORDER BY position ASC");

while ($row=mysqli_fetch_assoc($result)) {
    echo '<h1>',$row['name'],'</h1>';

    $items=mysqli_query($mysqli, "SELECT * FROM items WHERE group_id='".$row['id']."'");
    while ($itemsrow=mysqli_fetch_assoc($items)) {
        echo '<p>',$itemsrow['name'],'</p>';
    }
}

我在ng-repeat尝试了ng-repeat,但我不知道如何从实际的GROUP中访问GROUP_ID。我希望你知道我的意思。有人可以帮忙吗?

1 个答案:

答案 0 :(得分:1)

尝试:

void draw()
{
    glColor3f(0.0f, 1.0f, 0.0f);
    glLineWidth(2.0f);
    glBegin(GL_LINE_STRIP);
    float DCiter = 0;
    while (DCiter <= 1.0)
    {
        2Dpoint DC = decast(DCiter);
        glVertex2f(DC.x, DC.y);
        DCiter = DCiter + 0.01;
    }
}

plunker:https://plnkr.co/edit/EhjvrFm5c0NSSf0Vwnk2?p=preview