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:
E
If you want to use multiple params in ng-href
you should also update your route url in app.js
.
when you used multiple parameters in ng-href
but no route matching with this route then worked otherwise
route that redirect to home
.
you can try it.
in html:
Edit
add a route in app.js
like
.when('/provider/:id/collectionName/:cName', {
templateUrl: 'templates/provider/form.html',
controller: 'YourController'
});
and in controller need to change like:
$http.get('/providerlist/'+$routeParams.id +'/collectionName/'+ $routeParams.cName)
.success(function (response) {
alert(response);
$scope.providerList = response;
$scope.id = response['_id'];
});
so server side route should be like: /providerlist/:id/collectionName/:cName