I have a function which does a http POST request. The code is specified below. This works fine.
$http({ url: user.update_path, method: \"POST\", d
You can pass params directly to $http.get() The following works fine
$http.get()
$http.get(user.details_path, { params: { user_id: user.id } });