我正在尝试向服务器 php 发出 ajax 请求,但 angular 将数据作为字符串发送,并且 php 中没有 $POST (同样适用于 jquery ajax)。
$scope.getPhotoFromUrl = function() {
var urlData = { url: 'http://google.com' };
$http({
method: 'POST',
url: "remotecopy.php",
data: urlData
}).success(function(data, status, headers, config) {
console.log('http' + data.url);
});
}
我究竟做错了什么?