私はAngularが初めてで、jsonとng-repeatに問題があります。「モジュール」のリストと、その中に「週」のリストがあります。
{
"modules":
{
"module1":
{
"title":"name of module1",
"description":"description of module1",
"weeks":{"week1":{"title":"Week 01"}
},
"module2":
{
"title":"name of module2",
"description":"description of module2",
"weeks":{"week2":{"title":"Week 02"},"week3":{"title":"Week 03"}
}
}
}
私の最終的な出力はテーブルであり、モジュールを繰り返すことができますが、週をループさせることで何が間違っているのかを理解するのに苦労しています。ここに私のテンプレートがあります:
<table class="table table-bordered" ng-repeat="module in ocw.modules">
<tr>
<td>
<h3 class="moduletitle">{{ module.title }}</h3>
<h4>Description</h4>
<p>{{ module.description }}</p>
</td>
</tr>
<tr ng-repeat="week in ocw.modules.weeks">
<td>
{{ week.title }}
</td>
</tr>
</table>
したがって、適切なタイトルと説明を含む 2 つのテーブルが出力されますが、週を正しく表示できないようです。一部の「モジュール」には、複数の「週」があることに注意してください。エラーがテンプレートにあるのかjsonにあるのかよくわかりません。
助けてくれてありがとう。S