<div class = "cate" ng-repeat = "cate in categories" ng-click = "funcCall('{{cate.name}}')"></div>
The above code renders in the dom with the value for {{cate.name}} but when read in function it shows as {{cate.name}}.
How to pass such values and read them in controller functions?