1. 程式人生 > >基於原生XMLHTTPRequest封裝get方法

基於原生XMLHTTPRequest封裝get方法

function get(url,callback){
	var oReq=new XMLHttpRequest()
	//當請求載入成功之後要呼叫指定的函式
	oReq.onload=function(){
	//現在需要得到這裡的oReq.responseText
		callback(oReq.responseText)
		oReq.open('get',url,true)
		oReq.send()
	}
	get('data.json',function(data){
		console.log(data)})
		}}
在這裡插入程式碼片