• angular cors跨域资源共享设置 和formdata设定


    非常easy,下来容易找到:

    <pre name="code" class="javascript">.config(['$routeProvider', '$httpProvider', function ($routeProvider, $httpProvider) {
    
            // http://stackoverflow.com/questions/17289195/angularjs-post-data-to-external-rest-api
            $httpProvider.defaults.useXDomain = true;
    		delete $httpProvider.defaults.headers.common['X-Requested-With'];
    	 // Use x-www-form-urlencoded Content-Type
          $httpProvider.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded';
          $httpProvider.defaults.headers.put['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];
                      if(subValue != null){
                        // fullSubName = name + '[' + subName + ']';
                         fullSubName = name + '.' + subName;
                        // fullSubName =  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;
          }];
    
        }]);


    
    

    版权声明:本文博客原创文章,博客,未经同意,不得转载。

  • 相关阅读:
    项目经验【1】
    cudagdb
    外国名著小说大全
    历史天气查询
    名著小说在线阅读
    NET里ListView只启用竖向Veritcal滚动条Scrollbar(C#)
    XML 中特殊字符转换
    panle 闪烁 通过windowsApi
    selenium的Select下拉框选择
    浅浅的聊一下 WebSocket
  • 原文地址:https://www.cnblogs.com/mfrbuaa/p/4675964.html
Copyright © 2020-2023  润新知