왜 이것이 작동하지 않는지 아는 사람이 있습니까?
$http
.get('accept.php', {
source: link,
category_id: category
})
.success(function (data, status) {
$scope.info_show = data
});
그리고 이것은 작동합니다.
$http
.get('accept.php?source=' + link + '&category_id=' + category)
.success(function (data, status) {
$scope.info_show = data
});
params
위와 같이 사용 하면 .NET을 사용하지 않는 GET 요청 문제도 해결됩니다data
. AngularJS는 jQuery가 수행하는 것처럼이를 자체적으로 정렬하지 않습니다. (나는 그것이 좋거나 나쁜 것이라고 생각하지 않고 단지 다르며 사람들을 넘어 뜨릴 수 있습니다).