配列内のさまざまなオブジェクトに接続されている名前のリストがあります。私は、名前の1つをクリックするたびに値を取得し、そのオブジェクトに対応する別のリストに出力したいと思います。今、私は右の値をCONSOLE.LOG、それがどのように出力を知らない:配列の角をつけてフィルタリングして1つのオブジェクトを表示
<a href="#" id="name" ng-click="updateIndex($index);">{{ person.name }}</a>
はコントローラー:
$scope.updateIndex = function(index) {
console.log($scope.person[index]); //Logs the right values
}
私は出力オブジェクトの値は、名前をクリックすることができた方法〜へ:
<div class="wrap" ng-repeat="per in person">
<div class="box">
{{ person.name }}
</div>
<div class="box">
{{ person.age }}
</div>
<div class="box">
{{ person.town }}
</div>
<div class="box">
{{ person.country }}
</div>
<div class="box">
{{ person.gender }}
</div>
</div>
ありがとう!
「オブジェクトから値を出力する」とはどういう意味ですか? –