ajax

2016-11-26  本文已影响28人  ahong_吴

问答

1.ajax 是什么?有什么作用?

2.前后端开发联调需要注意哪些事情?后端接口完成前如何 mock 数据?

4.点击按钮,使用 ajax 获取数据,如何在数据到来之前防止重复点击?

var isDataArrive=true;  
xxx.addEventListener('click',function(){  
  if(!isDataArrive) return; 
  yyy.onreadystatechange=function(){
    if(){
      if(){}
      isDataArrive=true;                
    }  
    yyy.open();
    yyy.send();    
    isDataArrive=false;
  };  
}

代码

1.封装一个 ajax 函数,能通过如下方式调用

function ajax(opts){

        var xmlhttp = new XMLLHttpRequest();
        xmlhttp.onreadystatechange = function(){
          if(xmlhttp.readyState == 4 && xmlhttp.status == 200){
            var json = JSON.parse(xmlhttp.responseText);
            opts.success(json);
          }
          if(xmlhttp.status == 404){
            opts.error();
          }
        }
        var dataStr = '';
        for(var key in opts.data){
          dataStr += key + '=' + opts.data[key] + '&';
        }
        dataStr = dataStr.substr(0, dataStr.length-1);

        if(opts.type.toLowerCase() === 'post'){
          xmlhttp.open(opts.type, opts.url, true);
          xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
          xmlhttp.send(dataStr);
        }
        if(opts.type.toLowerCase() === 'get'){
          xmlhttp.open(opts.type, opts.url + '?' + dataStr, true);
          xmlhttp.send();
        }
      }


      document.getElementById('btn').addEventListener('click',function(){
        ajax({
          url:'use_ajax.php',
          type:'get',
          data:{
            username:document.getElementById('username').value
          },
          success:function(data){
            console.log(data);//dealWith(data);
          },
          error:function(){
            console.log("错误");//onError();
          }
        });
      });

2.实现如下加载更多的功能。

任务24-2 代码
新浪云预览

3.实现注册表单验证功能

任务24-3 代码
新浪云预览

上一篇 下一篇

猜你喜欢

热点阅读