vue開發(fā)過程中,總會(huì)碰到一些問題,當(dāng)然任何問題都不能阻止我們前進(jìn)的腳步,話不多說,下面是我在開發(fā)過程中請(qǐng)求參數(shù)所碰到的問題
1,在暫時(shí)沒有后臺(tái)數(shù)據(jù)的時(shí)候,post請(qǐng)求的參數(shù)大多會(huì)以 name:a,age:b 的格式去寫
import axios from 'axios'; axios.post(url,{ name:'0',age:'' },{emulateJSON: true}, { // 這里是跨域?qū)懛? headers:{"Content-Type": "application/x-www-form-urlencoded;charset=utf-8",} // 這里是跨域的寫法 }).then(reponse=>{ console.log(reponse) this.tableData=reponse.data.data })
這樣寫法是沒有問題的,
2,若是后臺(tái)已經(jīng)寫好,但post的請(qǐng)求要以 name:a&age:b 的方式去寫的話,上面你的寫法就會(huì)請(qǐng)求不到數(shù)據(jù),這時(shí)我們就要使用一個(gè)插件來解決這個(gè)問題
2.1,安裝qs
npm install --save axios vue-axios qs
2.2,在請(qǐng)求的頁面加入
import qs from 'qs'; import axios from 'axios'; axios.post(url,qs.stringify({ // 通過qs.stringify()將對(duì)象解析成URL的形式 name:'0', age:'2' }),{emulateJSON: true},{ headers:{"Content-Type": "application/x-www-form-urlencoded;charset=utf-8",} }).then(reponse=>{ console.log(reponse) this.tableData=reponse.data.data })
相信看了本文案例你已經(jīng)掌握了方法,更多精彩請(qǐng)關(guān)注Gxl網(wǎng)其它相關(guān)文章!
推薦閱讀:
怎樣使用React native ListView增加頂部下拉刷新和底下點(diǎn)擊刷新
如何使用Vue2.0調(diào)用攝像頭進(jìn)行拍照
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com