I have my $http.get with one parameter, and it works like :
getUserBand: function(email) {
return $http.get(baseUrl + 'selectUserBand.php?email=' + email);
},
I want to send 2 parameter like :
getUserBand: function(email,param2) {
How to call 2 parameter in this field?
},
How to call email and param2 in the $http.get field?
You can append param with '&':
Store all your url params in an object like,
now make the request using the following code,