0
我有一個迭代列表中的對象數組。如果我點擊這個名字,它應該告訴我這個名字對應的城市的價值。單擊一個對象數組中的值返回另一個鍵的值AngularJS
<div ng-app='myApp'>
<div ng-controller="AppController">
<div ng-click="getCity()" ng-repeat="step in steps">
<p> {{step.name}}</p>
</div>
</div>
var myApp = angular.module('myApp', []);
myApp.controller('AppController', function ($scope) {
$scope.steps = [
{name: "ABC", status: true, city: "Boston"},
{name: "DEF", status: true, city: "New York"},
{name: "GHI", status: true, city: "LA"}
];
$scope.getCity = function(a) {
}
});
- >所以我點擊 「ABC」 和 「波士頓」 應該給我看了。
欣賞幫助。謝謝。
什麼是不工作? – UncleDave
那麼返回城市價值的功能是什麼? – a2441918
我已經回答了,但將來你應該真的告訴我們你試過了什麼,什麼都不行。如果你沒有嘗試過,那麼你可以在AngularJS文檔中輕鬆找到答案。 – UncleDave