最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

javascript - AngularJS - How to call controller function with item value as argument in ng-repeater? - Stack Overflow

matteradmin4PV0评论

I am quite new to AngularJS, and I am stuck for a moment using the ng-repreat.

I am trying to call a controller function using ng-click to change the model. First, I used the $index variable provided by ng-repeat. But when I added a filter, I could not get the correct item ID. (removing the filter restore the expected behavior)

I made a simple example : / As indicated in the script I would like to using friend.id instead of $index in order to set the correct value in my friendvariable.

I am quite new to AngularJS, and I am stuck for a moment using the ng-repreat.

I am trying to call a controller function using ng-click to change the model. First, I used the $index variable provided by ng-repeat. But when I added a filter, I could not get the correct item ID. (removing the filter restore the expected behavior)

I made a simple example : http://jsfiddle/folkenda/wt7b2/ As indicated in the script I would like to using friend.id instead of $index in order to set the correct value in my friendvariable.

Share Improve this question asked Jul 29, 2012 at 13:29 Olivier.RogerOlivier.Roger 4,2296 gold badges43 silver badges70 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 5

setFriend(friend.Id) will work. Although, you could just pass the friend object itself. setFriend(friend).

Post a comment

comment list (0)

  1. No comments so far