AngularJS : How to pass multiple parameters to controller through ng-href?
问题 I've a table containing edit button to update the record. When I'm passing single id to ng-href its working fine and opening form page: Ex: In my index.html table <a class="btn btn-warning" ng-href="#/provider/{{row._id}}">Edit</a> But I want to pass one more parameter along with row._id to ng-href like: <a class="btn btn-warning" ng-href="#/provider/{{row._id}}/collectionName/{{collectionName}}">Edit</a> Its not working and redirecting to home page. Here's my controller: $timeout(function ()