zoukankan      html  css  js  c++  java
  • 原生ajax的get和post方法封装

    原生ajax的get和post方法封装:https://www.cnblogs.com/qiuxiaozhen/p/10568314.html

    get 方法

    复制代码
        function serialize (data) {
          if (!data) {
            return '';
          }
          
          var paris = [];
          for (var key in data) {
            if (!data.hasOwnProperty(key) || typeof data[key] === 'function') {
              continue;
            }
            var name = encodeURIComponent(key);
            var value = encodeURIComponent(data[key].toString());
            paris.push(name + '=' + value);
          }
          return paris.join('&');
        }
    
        function get (url, options, callback) {
          var req;
          if (window.XMLHttpRequest) {
            req = new XMLHttpRequest();
          } else if (window.ActiveXObject) { // 兼容IE7及以下版本
            req = new ActiveXObject();
          }
          
          req.onreadystatechange = function () {
            if (req.readyState === 4) {
              if (req.status === 200) {
                console.log('请求成功');
                callback(req.response);
              }
            } else {
              console.log('请求中...');
            }
          }
          
          // 将传递的参数序列化
          if (serialize(options) !== '') {
            url = url + '?' + serialize(options);
          }
    
          req.open('get', url);
          req.send(null);
        }
    复制代码

     post方法

    复制代码
        function serialize (data) {
          if (!data) {
            return '';
          }
          
          var paris = [];
          for (var key in data) {
            if (!data.hasOwnProperty(key) || typeof data[key] === 'function') {
              continue;
            }
            var name = encodeURIComponent(key);
            var value = encodeURIComponent(data[key].toString());
            paris.push(name + '=' + value);
          }
          return paris.join('&');
        }
    
        function post (url, options, callback) {
          var req;
          if (window.XMLHttpRequest) {
            req = new XMLHttpRequest();
          } else if (window.ActiveXObject) { // 兼容IE7及以下版本
            req = new ActiveXObject();
          }
          
          req.onreadystatechange = function () {
            if (req.readyState === 4) {
              if (req.status === 200) {
                console.log('请求成功');
                callback(req.response);
              }
            } else {
              console.log('请求中...');
            }
          }
    
          req.open('post', url);
          req.send(serialize(options));
        }
    复制代码

    get与post方法结合

    复制代码
        function serialize (data) {
          if (!data) {
            return '';
          }
          
          var paris = [];
          for (var key in data) {
            if (!data.hasOwnProperty(key) || typeof data[key] === 'function') {
              continue;
            }
            var name = encodeURIComponent(key);
            var value = encodeURIComponent(data[key].toString());
            paris.push(name + '=' + value);
          }
          return paris.join('&');
        }
    
        function request (method, url, options, callback) {
          var req;
          if (window.XMLHttpRequest) {
            req = new XMLHttpRequest();
          } else if (window.ActiveXObject) { // 兼容IE7及以下版本
            req = new ActiveXObject();
          }
          
          req.onreadystatechange = function () {
            if (req.readyState === 4) {
              if (req.status === 200) {
                console.log('请求成功');
                callback(req.response);
              }
            } else {
              console.log('请求中...');
            }
          }
          
          url = method === 'get' && serialize(options) !== '' ?  url + '?' + serialize(options) : url;
          let sendParams = method === 'get' ? null : serialize(options);
          
          req.open(method, url);
          req.send(sendParams);
        }
    复制代码
  • 相关阅读:
    多屏共享
    md5-linux_shell
    2017年会所得
    linux无线网络配置_转
    (转)台式机华硕主板双显卡切换,怎么舒服怎么来
    Apache FtpServer 实现文件的上传和下载
    (转载)Windows 上搭建Apache FtpServer
    Eclipse常用设置
    博客园文章样式修改
    黑马公社学习
  • 原文地址:https://www.cnblogs.com/bydzhangxiaowei/p/14194087.html
Copyright © 2011-2022 走看看