美文网首页
033--Ajax完整请求

033--Ajax完整请求

作者: 糖纸疯了 | 来源:发表于2017-10-20 15:03 被阅读29次

1.Ajax完整请求

$.ajax({
    url:'/comm/test1.php',
    type:'POST', //GET
    async:true,    //或false,是否异步
    data:{
        name:'yang',age:25
    },
    timeout:5000,    //超时时间
    dataType:'json',    //返回的数据格式:json/xml/html/script/jsonp/text
    beforeSend:function(xhr){
        console.log(xhr)
        console.log('发送前')
    },
    success:function(data,textStatus,jqXHR){
        console.log(data)
        console.log(textStatus)
        console.log(jqXHR)
    },
    error:function(xhr,textStatus){
        console.log('错误')
        console.log(xhr)
        console.log(textStatus)
    },
    complete:function(){
        console.log('结束')
    }
})

相关文章

网友评论

      本文标题:033--Ajax完整请求

      本文链接:https://www.haomeiwen.com/subject/gbrvuxtx.html