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
});
The 2nd parameter in the
get
call is a config object. You want something like this:See the Arguments section of http://docs.angularjs.org/api/ng.$http for more detail
From
$http.get
docs, the second parameter is a configuration object:You may change your code to:
Or:
As a side note, since Angular 1.6:
.success
should not be used anymore, use.then
instead: