Typescript 用接口模拟ajax请求

Typescript 用接口模拟ajax请求

interface Config {
    type:string;
    url:string;
    data?:string;
    dataType:string
}

function ajax(config:Config){

var xhr = new XMLHttpRequest()
xhr.open(config.type,config.url,true)
xhr.send(config.data);
xhr.onreadystatechange =function(){
    if(xhr.readyState==4 && xhr.status==200){
        console.log(‘success‘)
    }
    else{
        console.log(xhr.responseText)
    }
}

}
ajax({
    type:‘get‘,
    url:‘www.baidu.com‘,
    data:‘name:zhangsna‘,
    dataType:‘json‘
})

 Typescript 用接口模拟ajax请求

 运行结果:

Typescript 用接口模拟ajax请求

Typescript 用接口模拟ajax请求

上一篇:fastjson 1.2.24反序列化


下一篇:android手机客户端测试-思考方向