JavaScript中怎么利用fetch實現(xiàn)異步請求,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。
為石鼓等地區(qū)用戶提供了全套網(wǎng)頁設(shè)計制作服務(wù),及石鼓網(wǎng)站建設(shè)行業(yè)解決方案。主營業(yè)務(wù)為成都網(wǎng)站建設(shè)、成都做網(wǎng)站、石鼓網(wǎng)站設(shè)計,以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務(wù)。我們深信只要達到每一位用戶的要求,就會得到認可,從而選擇與我們長期合作。這樣,我們也可以走得更遠!普通的Ajax請求,用XHR發(fā)送一個json請求一般是這樣的:
var xhr = new XMLHttpRequest();
xhr.open("GET", url);
xhr.responseType = 'json';
xhr.onload = function(){
console.log(xhr.response);
};
xhr.onerror = function(){
console.log("error")
}
xhr.send();
使用fetch實現(xiàn)的方式:
fetch(url).then(function(response){
return response.json();
}).then(function(data){
console.log(data)
}).catch(function(e){
console.log("error")
})
也可以用async/await的方式
try{
let response = await fetch(url);
let data = await response.json();
console.log(data);
} catch(e){
console.log("error")
}
用了await后,寫異步代碼感覺像同步代碼一樣爽。await后面可以跟Promise對象,表示等待Promise resolve()才會繼續(xù)下去執(zhí)行,如果Promise被reject()或拋出異常則會被外面的try...catch捕獲。
fetch的主要優(yōu)點是
語法簡潔,更加語義化 基于標準的Promise實現(xiàn),支持async/await 同構(gòu)方便
但是也有它的不足
fetch請求默認是不帶cookie的,需要設(shè)置fetch(url, {credentials: 'include'}) 服務(wù)器返回400,500這樣的錯誤碼時不會reject,只有網(wǎng)絡(luò)錯誤這些導(dǎo)致請求不能完成時,fetch才會被reject.
fetch語法:
fetch(url, options).then(function(response) {
// handle HTTP response
}, function(error) {
// handle network error
})
具體參數(shù)案例:
//兼容包
require('babel-polyfill')
require('es6-promise').polyfill()
import 'whatwg-fetch'
fetch(url, {
method: "POST",
body: JSON.stringify(data),
headers: {
"Content-Type": "application/json"
},
credentials: "same-origin"
}).then(function(response) {
response.status //=> number 100–599
response.statusText //=> String
response.headers //=> Headers
response.url //=> String
response.text().then(function(responseText) { ... })
}, function(error) {
error.message //=> String
})
參數(shù)說明
url
定義要獲取的資源。這可能是:一個 USVString 字符串,包含要獲取資源的 URL。一個 Request 對象。
options(可選)
一個配置項對象,包括所有對請求的設(shè)置。可選的參數(shù)有:
method
: 請求使用的方法,如 GET、POST。
headers
: 請求的頭信息,形式為 Headers 對象或 ByteString。
body
: 請求的 body 信息:可能是一個 Blob、BufferSource、FormData、URLSearchParams 或者 USVString 對象。注意 GET 或 HEAD 方法的請求不能包含 body 信息。
mode
: 請求的模式,如 cors、 no-cors 或者 same-origin。
credentials
: 請求的 credentials,如 omit、same-origin 或者 include。
cache
: 請求的 cache 模式: default, no-store, reload, no-cache, force-cache, 或者 only-if-cached。
response
一個 Promise,resolve 時回傳 Response 對象:
屬性:
status (number)
- HTTP請求結(jié)果參數(shù),在100–599 范圍
statusText (String)
- 服務(wù)器返回的狀態(tài)報告
ok (boolean)
- 如果返回200表示請求成功則為true
headers (Headers)
- 返回頭部信息,下面詳細介紹
url (String)
- 請求的地址
方法:
text()
- 以string的形式生成請求text
json()
- 生成JSON.parse(responseText)的結(jié)果
blob()
- 生成一個Blob
arrayBuffer()
- 生成一個ArrayBuffer
formData()
- 生成格式化的數(shù)據(jù),可用于其他的請求
其他方法:
clone()
Response.error()
Response.redirect()
response.headers
has(name) (boolean)
- 判斷是否存在該信息頭
get(name) (String)
- 獲取信息頭的數(shù)據(jù)
getAll(name) (Array)
- 獲取所有頭部數(shù)據(jù)
set(name, value)
- 設(shè)置信息頭的參數(shù)
append(name, value)
- 添加header的內(nèi)容
delete(name)
- 刪除header的信息
forEach(function(value, name){ ... }, [thisContext])
- 循環(huán)讀取header的信息
//獲取css里ul的id屬性
let uldom = document.getElementById("students");
//單獨創(chuàng)建一個json文件,獲取地址
let url = "data.json";
function main(){
fetch(url).then(respone=>{
return respone.json();
}).then(students=>{
let html = ``;
for(let i=0, l=students.length; i<l; i++){
let name = students[i].name;
let age = students[i].age;
html += `
<li>姓名:${name},年齡:${age}</li>
`
}
uldom.innerHTML = html;
});
}
main();
結(jié)合await最終代碼
let uldom = document.getElementById("students");
let url = "data.json";
async function main(){
let respone = await fetch(url);
let students = await respone.json();
let html =``;
for(let i=0, l=students.length; i<l; i++){
let name = students[i].name;
let age = students[i].age;
html += `
<li>姓名:${name},年齡:${age}</li>
`
}
uldom.innerHTML = html;
}
main();
data.json文件內(nèi)容如下:
[
{"name":"張三","age":"3"},
{"name":"李萬","age":"1"},
{"name":"王二","age":"4"},
{"name":"二狗","age":"3"},
{"name":"狗蛋","age":"5"},
{"name":"牛娃","age":"7"}
]
運行后結(jié)果是:
姓名:張三,年齡:3
姓名:李萬,年齡:1
姓名:王二,年齡:4
姓名:二狗,年齡:3
姓名:狗蛋,年齡:5
姓名:牛娃,年齡:7
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進一步的了解或閱讀更多相關(guān)文章,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對創(chuàng)新互聯(lián)網(wǎng)站建設(shè)公司,的支持。
本文名稱:JavaScript中怎么利用fetch實現(xiàn)異步請求-創(chuàng)新互聯(lián)
網(wǎng)頁網(wǎng)址:http://aaarwkj.com/article24/pgice.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供定制開發(fā)、電子商務(wù)、企業(yè)建站、營銷型網(wǎng)站建設(shè)、網(wǎng)站排名、搜索引擎優(yōu)化
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容