ul
li(ng-repeat='item in index')
a(href='{{item}}') link is {{item}}
在控制器中
$scope.index= ['1', '2', '3', '4'];
$scope.alphabets= ['a', 'b', 'c', 'd'];
$scope.fruits = ['apple', 'banana', 'coconut', 'dates']
以上工作,但我们只能{{item}}
在html页面中使用。所以两者href
都<a> tag
包含1, 2, 3, 4
。
{{}}
in 的双重评估{{alphabets[{{item}}]}}
不起作用。
我想要做:
li(ng-repeat='item in index')
a(href='alphabets[{{item}}]') fruits[{{item}}]
这表明
a(href='a') apple