0

コントローラーに、、、など$scope.result1$scope.result2スコープ変数があります。$scope.result3結果に一般的な ng-repeat を実装するにはどうすればよいですか。だから、私は自分のhtmlスクリプトにこのようなものを持ちたいと思っています。

<div ng-repeat="i in [] | range:3"> // I have filter "range" declared, so no problem with this loop.
  {{$index}}
  <div ng-repeat='result in result$index'>
     {{result}}
  </div>
</div>

しかし、私はこれを実装することができません。このようなことを何らかの手段で行うことはできますか?

4

1 に答える 1