使用transformRequest将JSON转换为FormURL编码数据

时间:2017-05-14 09:14:36

标签: javascript angularjs json form-data angular-factory

我正在尝试将JSON数据转换为formURL编码数据,但仍然无法正常工作。

我的HTTP帖子

$http.post(API_ENDPOINT.login, credentials, {
    transformRequest: transformRequestAsFormPost
 })

我的转换请求

'use strict';

define(['app-module'], function(app) {

$app.info('transformRequest initialized');

return app.factory('transformRequestAsFormPost', function() {

    function transformRequest(data, getHeaders) {
        var headers = getHeaders();
        headers["Content-Type"] = "application/x-www-form-urlencoded; charset=utf-8";
        return (serializeData(data));
    }

    function serializeData(data) {

        if (!angular.isObject(data)) {
            return ((data === null) ? "" : data.toString());
        }

        var buffer = [];

        for (var name in data) {
            if (!data.hasOwnProperty(name)) {
                continue;
            }

            var value = data[name];

            buffer.push(
                encodeURIComponent(name) +
                "=" +
                encodeURIComponent((value == null) ? "" : value)
            );

            console.log(buffer)

        }
        var source = buffer.join("&").replace(/%40/g, "@");
        return (source);
    }
    return (transformRequest);
});
});

我无法弄清楚我做错了什么。当我将任何JSON对象传递给它时,它返回一个字符串。

1 个答案:

答案 0 :(得分:3)

由于5da1256transformRequest函数无法再修改请求标头。此行为是无意识且未记录的,因此更改应该会影响很少的应用程序。 1

使用Content-Type: application/x-www-form-urlencoded发送POST请求:

var config = {
  transformRequest: $httpParamSerializer,
  headers: {
    'Content-Type': 'application/x-www-form-urlencoded'
  }
};

$http.post(API_ENDPOINT.login, credentials, config)
  .then(function(response) {
    console.log("SUCCESS");
}).catch(function(response) {
    console.log("ERROR");
    throw response;
});