$http get parameters does not work
问题 Does anyone know why this does not work? $http .get('accept.php', { source: link, category_id: category }) .success(function (data, status) { $scope.info_show = data }); and this does work: $http .get('accept.php?source=' + link + '&category_id=' + category) .success(function (data, status) { $scope.info_show = data }); 回答1: The 2nd parameter in the get call is a config object. You want something like this: $http .get('accept.php', { params: { source: link, category_id: category } }) .success