搜尋

首頁  >  問答  >  主體

angular.js - angularJs 的$http的post怎麼用的

post的資料中文有亂碼,這個是怎麼設定的?

迷茫迷茫2744 天前606

全部回覆(2)我來回復

  • 習慣沉默

    習慣沉默2017-05-15 16:54:53

    我記得post需要進行轉換後台才能取到。 。 。 代碼是網路上很早就有的。 。 你試試看?
    中文亂碼可以試試編碼,

    `app.config(function($httpProvider) {
    $httpProvider.defaults.headers.put['Content-Type'] = 'application/x-www-form-urlencoded';
    $httpProvider.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded';

        // Override $http service's default transformRequest
        $httpProvider.defaults.transformRequest = [function(data) {
            /**
             * The workhorse; converts an object to x-www-form-urlencoded serialization.
             * @param {Object} obj
             * @return {String}
             */
            var param = function(obj) {
                var query = '';
                var 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;
            };
    
            return angular.isObject(data) && String(data) !== '[object File]'
                    ? param(data)
                    : data;
        }];
    });`
    

    回覆
    0
  • 伊谢尔伦

    伊谢尔伦2017-05-15 16:54:53

    雷雷

    回覆
    0
  • 取消回覆