If you need to add params to your $http.get request in AngularJS simply use the following syntax:


$http.get("/users", {
  params: {
    search: "phillip"
  }
})


Related External Links: