I've been looking for hours for some angularjs
documentation that explains how to POST xml data using the $http
object. Does angular simply not offer it with their $http
object? The code:
$http({
method: 'POST',
url: 'http://10.0.0.123/PHP/itemsGet.php',
data: '<searchKey id="whatever"/>',
headers: { "Content-Type": 'application/x-www-form-urlencoded' }
})