您好,登錄后才能下訂單哦!
這篇文章主要介紹了Vue中resource請(qǐng)求格式和萬(wàn)能測(cè)試地址的示例分析,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
注意:
1.前端服務(wù)器測(cè)試地址的萬(wàn)能地址,太好用了http://jsonplaceholder.typicode.com/users,基本能響應(yīng)各種請(qǐng)求。點(diǎn)擊進(jìn)入官網(wǎng)
2.這里測(cè)試只寫(xiě)了成功的回調(diào)函數(shù),同時(shí)還要失敗時(shí)的回調(diào)函數(shù)。
HTML代碼:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <script src="../lib/vue.js"></script> <script src="../lib/vue-resource.js"></script> <!--vue-resource是基于vue.js的,要后導(dǎo)入--> </head> <body> <div id="app"> <input type="button" value="get方式" v-on:click="getInfo"> <input type="button" value="post方式" v-on:click="postInfo"> <input type="button" value="jsonp方式" v-on:click="jsonpInfo"> </div> <script> var vm = new Vue({ el:'#app', data:{}, methods:{ getInfo(){ this.$http.get('http://jsonplaceholder.typicode.com/users').then(result=> { console.log(result.body); }) }, //get請(qǐng)求,通過(guò)function執(zhí)行的成功的回調(diào)函數(shù),得到body和data等數(shù)據(jù) postInfo(){ this.$http.post('http://jsonplaceholder.typicode.com/users',{},{emulateJSON:true}).then(result=>{ console.log(result.body); }) }, //post請(qǐng)求,中間花括號(hào)空的部分為提交給服務(wù)器的數(shù)據(jù)這里默認(rèn),emulateJSON:true,將手動(dòng)提交表單格式設(shè)置為application/x-www-form-urlencoded格式 jsonpInfo(){ this.$http.jsonp('http://jsonplaceholder.typicode.com/users').then(result=>{ console.log(result.body) }) } } }); </script> </body>
效果:依次點(diǎn)擊按鈕得到的結(jié)果
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“Vue中resource請(qǐng)求格式和萬(wàn)能測(cè)試地址的示例分析”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來(lái)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。