您好,登錄后才能下訂單哦!
本篇文章為大家展示了使用JavaScript怎么實現一個fetch接口,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
fetch獲取后端數據的例子:
// 通過fetch獲取百度的錯誤提示頁面 fetch('https://www.baidu.com/search/error.html') // 返回一個Promise對象 .then((res)=>{ return res.text() // res.text()是一個Promise對象 }) .then((res)=>{ console.log(res) // res是最終的結果 })
GET請求
GET請求初步
完成了helloworld,這個時候就要來認識一下GET請求如何處理了。
上面的helloworld中這是使用了第一個參數,其實fetch還可以提供第二個參數,就是用來傳遞一些初始化的信息。
這里如果要特別指明是GET請求,就要寫成下面的形式:
// 通過fetch獲取百度的錯誤提示頁面 fetch('https://www.baidu.com/search/error.html', { method: 'GET' }) .then((res)=>{ return res.text() }) .then((res)=>{ console.log(res) })
GET請求的參數傳遞
GET請求中如果需要傳遞參數怎么辦?這個時候,只能把參數寫在URL上來進行傳遞了。
// 通過fetch獲取百度的錯誤提示頁面 fetch('https://www.baidu.com/search/error.html?a=1&b=2', { // 在URL中寫上傳遞的參數 method: 'GET' }) .then((res)=>{ return res.text() }) .then((res)=>{ console.log(res) })
POST請求
與GET請求類似,POST請求的指定也是在fetch的第二個參數中:
// 通過fetch獲取百度的錯誤提示頁面 fetch('https://www.baidu.com/search/error.html', { method: 'POST' // 指定是POST請求 }) .then((res)=>{ return res.text() }) .then((res)=>{ console.log(res) })
POST請求參數的傳遞
眾所周知,POST請求的參數,一定不能放在URL中,這樣做的目的是防止信息泄露。
// 通過fetch獲取百度的錯誤提示頁面 fetch('https://www.baidu.com/search/error.html', { method: 'POST', body: new URLSearchParams([["foo", 1],["bar", 2]]).toString() // 這里是請求對象 }) .then((res)=>{ return res.text() }) .then((res)=>{ console.log(res) })
設置請求的頭信息
在POST提交的過程中,一般是表單提交,可是,經過查詢,發現默認的提交方式是:Content-Type:text/plain;charset=UTF-8,這個顯然是不合理的。下面咱們學習一下,指定頭信息:
// 通過fetch獲取百度的錯誤提示頁面 fetch('https://www.baidu.com/search/error.html', { method: 'POST', headers: new Headers({ 'Content-Type': 'application/x-www-form-urlencoded' // 指定提交方式為表單提交 }), body: new URLSearchParams([["foo", 1],["bar", 2]]).toString() }) .then((res)=>{ return res.text() }) .then((res)=>{ console.log(res) })
這個時候,在谷歌瀏覽器的Network中查詢,會發現,請求方式已經變成了content-type:application/x-www-form-urlencoded。
通過接口得到JSON數據
上面所有的例子中都是返回一個文本,那么除了文本,有沒有其他的數據類型呢?肯定是有的,具體查詢地址:Body的類型
由于最常用的是JSON數據,那么下面就簡單演示一下獲取JSON數據的方式:
fetch('https://www.baidu.com/rec?platform=wise&ms=1&rset=rcmd&word=123&qid=11327900426705455986&rq=123&from=844b&baiduid=A1D0B88941B30028C375C79CE5AC2E5E%3AFG%3D1&tn=&clientWidth=375&t=1506826017369&r=8255', { // 在URL中寫上傳遞的參數 method: 'GET', headers: new Headers({ 'Accept': 'application/json' // 通過頭指定,獲取的數據類型是JSON }) }) .then((res)=>{ return res.json() // 返回一個Promise,可以解析成JSON }) .then((res)=>{ console.log(res) // 獲取JSON數據 })
強制帶Cookie
默認情況下, fetch 不會從服務端發送或接收任何 cookies, 如果站點依賴于維護一個用戶會話,則導致未經認證的請求(要發送 cookies,必須發送憑據頭).
// 通過fetch獲取百度的錯誤提示頁面 fetch('https://www.baidu.com/search/error.html', { method: 'GET', credentials: 'include' // 強制加入憑據頭 }) .then((res)=>{ return res.text() }) .then((res)=>{ console.log(res) })
上述內容就是使用JavaScript怎么實現一個fetch接口,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。