色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

Vue $xhr

呂致盈2年前10瀏覽0評論

Vue $xhr 是 Vue.js 1.x 版本中的一個內(nèi)置的簡單的 Ajax 庫,通過 $http 屬性來暴露出來。與現(xiàn)代的 axios 和 fetch 相比,它比較老舊,并且在 Vue.js 2.x 版本中已經(jīng)被廢棄,推薦使用 axios 或 fetch。

Vue.$http.get(url, [options])
Vue.$http.post(url, [body], [options])
Vue.$http.put(url, [body], [options])
Vue.$http.delete(url, [options])

$http 方法都是返回一個 Promise 對象。通過 $http 方法可以進行 HTTP 請求,傳入?yún)?shù)包括 url、請求 body(對于 post 等請求有用),以及請求設(shè)置 options。

請求的 options 選項包括 headers、params、responseType 等。其中,headers 為請求頭部,params 為 URL 查詢參數(shù),responseType 為返回數(shù)據(jù)類型(比如字符串,對象等)。

Vue.$http.get('/api', { params: { id: '123' } })
.then(response =>{
console.log(response.data)
})
.catch(error =>{
console.log(error)
})

以上代碼是對于 /api 發(fā)起一個帶上查詢參數(shù) id 為 123 的 GET 請求,返回的數(shù)據(jù)通過 .then 回調(diào)函數(shù)中的 response.data 來獲取。如果請求發(fā)生錯誤,通過 .catch 回調(diào)函數(shù)中的 error 來捕獲錯誤信息。

總的來說,雖然 Vue $xhr 不是最適合的選擇,但是對于小型項目或者測試使用,也是可以的。