Weiß jemand warum das nicht funktioniert?
$http
.get('accept.php', {
source: link,
category_id: category
})
.success(function (data, status) {
$scope.info_show = data
});
und das funktioniert:
$http
.get('accept.php?source=' + link + '&category_id=' + category)
.success(function (data, status) {
$scope.info_show = data
});
params
wie oben auch das Problem behebt, dass GET-Anforderungen nicht verwendet werdendata
. AngularJS wird dies nicht wie jQuery selbst regeln. (Ich denke nicht, dass das eine gute oder schlechte Sache ist, nur anders und kann Leute stolpern).