• AngularJS 学习笔记值post传值


    问题直接调用$http.post()方法时
    传值格式是这样的
    php接收端接收到的是json格式的,怎么做的跟Ajax post那样传值呢?
    分析原因,angular的$http.post()方法默认数据传输格式是json的
      post: {'Content-Type': 'application/json;charset=utf-8'},
          put:  {'Content-Type': 'application/json;charset=utf-8'}
    所以要修改传输格式
     
    解决方法如下
    在angular模块中加入
    //修改post方式 form格式传值
    angular.module('MyModule', [], function($httpProvider) {//MyModule是你自己的app名称
      // Use x-www-form-urlencoded Content-Type
      $httpProvider.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded;charset=utf-8';
      $httpProvider.defaults.headers.put['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
              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;
      };
     
      // Override $http service's default transformRequest
      $httpProvider.defaults.transformRequest = [function(data) {
        return angular.isObject(data) && String(data) !== '[object File]' ? param(data) : data;
      }];
    });
     
    结果如下
    AngularJS <wbr>学习笔记值post传值

     综上所述,问题就解决了。AngularJS <wbr>学习笔记值post传值
     

     

  • 相关阅读:
    while循环
    赋值运算符、逻辑运算符补充
    布尔类型 基本运算符 if判断
    输入 格式化输出
    计算机基础
    python介绍 编程语言分类及对比 python解释器安装(多版本共存) 变量 数据类型(三种)
    UDP套接字协议
    软件工程个人作业01
    网页版增加信息---添加
    javaWeb项目技术
  • 原文地址:https://www.cnblogs.com/zhujiabin/p/5090792.html
Copyright © 2020-2023  润新知