1

モデルに基づいてhtmlテーブルを作成したいと思います。

私はそのようなことをしたい:

Student         | competence 1                        |
                | subject 1                | subject 2|
                | exam 1 | exam2 | average |          |
xxxxx yyyyyyyyy |   10   | 20    |   15    | 45       |

そして、これが私がこれをやろうとしている方法です:

table(ng-controller="ExaminationListCtrl")
  tr
    th(ng-repeat="(competence, s) in competenceToSubjectSize", colspan="{{s.length}}")
      {{competence}}
  tr
    th(ng-repeat="subject in subjects")
      {{subject.subject}}

私の問題は、使用できないことです。私には、要素の子にのみバインドされているように見えます。これをどのように達成できますかcolspan="{{s.length}}""competence"s

4

1 に答える 1

1

ng-repeatでマークされたスコープにアクセスできるトップタグなので、私は間違っていました

于 2012-10-06T05:06:26.280 に答える