var transform =function(data){return$.param(data); }
$http.post("/foo/bar", requestData, { headers: {'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'}, transformRequest: transform }).success(function(responseData) {//do stuff with response});