Fazendo $ _POST do PHP funcionar com $ http do AngularJS

Se você tentar fazer algo assim no AngularJS:

$http.post('api.php', {password: 'test123'});

Você pode ficar confuso quando o seguinte código PHP não produz nenhuma saída:

echo $_POST['password'];

A razão pela qual isso falha é porque o PHP espera um tipo de conteúdo e formato de “application / x-www-form-urlencoded”, mas não é isso que $ http envia por padrão. A correção requer apenas a seguinte adição à configuração do módulo de aplicativo principal.

$httpProvider.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded;charset=utf-8';

var param = function(obj) {
var query = '',
name
, value, fullSubName, subName, subValue, innerObj, i;

for (name in obj) {
value = obj[name];

if (value instanceof Array) {
for (i = 0; i < value.length; ++i) {
subValue
= value[i];
fullSubName
= name + '[' + i + ']';
innerObj
= {};
innerObj
[fullSubName] = subValue;
query
+= param(innerObj) + '&';
}
}
else if (value instanceof Object) {
for (subName in value) {
subValue
= value[subName];
fullSubName
= name + '[' + subName + ']';
innerObj
= {};
innerObj
[fullSubName] = subValue;
query
+= param(innerObj) + '&';
}
}
else if (value !== undefined && value !== null) query += encodeURIComponent(name) + '=' + encodeURIComponent(value) + '&';
}

return query.length ? query.substr(0, query.length - 1) : query;
};

$httpProvider
.defaults.transformRequest = [function(data) {
return angular.isObject(data) && String(data) !== '[object File]' ? param(data) : data;
}];

Você pode ver como isso é usado pelo projeto angular-codeigniter-seed em: https://github.com/rmcdaniel/angular-codeigniter-seed/blob/master/js/application.js#L30