Ajax請求
- Ajax是jQuery封裝的函數(shù)(方法)购岗,使用Ajax請求同樣需要先導(dǎo)入jQuery的js文件或地址阳欲,并且寫在script標(biāo)簽中
1. 什么是Ajax
- Ajax就是異步j(luò)s金刁,專門用來提供異步網(wǎng)絡(luò)請求操作
$.ajax({
type:請求方式, // get/post
url:請求地址,
data:請求參數(shù), // {參數(shù)名1:值1, 參數(shù)名2:值2}
async:是否異步,
dataType:返回的數(shù)據(jù)類型
success:function(結(jié)果){
請求成功后要做的事情
} // 請求成功后調(diào)用的函數(shù),函數(shù)的參數(shù)就是請求結(jié)果
});
$.ajax({
type:"get",
url:"https://www.apiopen.top/satinApi",
data:{type:1,page:1},
// get請求參數(shù)這里可以直接拼接到url后面锈锤,不用單獨(dú)寫;post請求才必須寫data
async:true,
dataType:'json',
success:function(result){
console.log(typeof(result))
console.log(result)
}
});
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者