我正在研究角度js,我认为这是一个简单的问题
参见脚本 - 重复标记(ng-repeat)
<a href="#/modelList/{{carBrandList.data[5].model}}">{{brand.model}} </a>
你注意到这个标签中的{{carBrandList.data[5].model}}
我的问题
我想设置数组值对应重复行 - {{carBrandList.data [dynamic correspond value
]。model}}
我的失败代码
<a href="#/modelList/{{carBrandList.data[`{{$index + 1}}`].model}}">{{brand.model}} </a>
控制器
angular.module('carPricesApp.controllers',[]).
controller('carPricesController', function($scope, $http){
$scope.carBrandList = [];
$http.get("apidata.js")
.success(function(response) {
$scope.carBrandList = response
})
})
答案 0 :(得分:1)
在ng-repeat中尝试此操作
<a href="#/modelList/{{carBrandList.data[$index + 1].model}}">{{brand.model}} </a>