Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to pass interpolated value as an argument into a javascript function in angularjs

I call a function when a button is clicked in html in my angularjs app like below

<button type="button" class="btn" ng-click="foo(bar, fruits, {{user.email}})">Get it Done</button>

foo is a function in a controller, bar and fruits are values from a form and {{user.email}} is an email in scope.

I could get {{user.email}} displayed on the html page alright, but I get an undefined for it in the foo function of the controller, when the given button is clicked.

$scope.foo = function(bar, fruits, email) {
    //email is undefined here
};

Could somebody help me understand how could I pass that {{user.email}} value to the foo function in the controller?

like image 299
skip Avatar asked Jan 10 '23 20:01

skip


1 Answers

Please see here http://jsbin.com/mawey/1/edit. You don't have to interpolate user.email just:

<button type="button" class="btn" ng-click="foo(bar, fruits, user.email)">
like image 79
sylwester Avatar answered Feb 05 '23 03:02

sylwester