vue面試題:在vue下書寫一個post請求?

小浣熊的姐姐小還熊發表於2018-11-04

vue開發過程中,總會碰到一些問題,當然任何問題都不能阻止我們前進的腳步,話不多說,下面是我在開發過程中請求引數所碰到的問題

1. 在暫時沒有後臺資料的時候,post請求的引數大多會以 name:a,age:b 的格式去寫

  import axios from 'axios';
    axios.post(url,
        {name:'0',age:''},
        {emulateJSON: true},
        {  // 這裡是跨域寫法
        headers:{"Content-Type": "application/x-www-form-urlencoded;charset=utf-8",}  // 這裡是跨域的寫法
        }
              ).then(
                  reponse=>{
                           console.log(reponse);
                           this.tableData=reponse.data.data
                           }
                    );
    總結:這樣寫法是沒有問題的,
複製程式碼

2. 若是後臺已經寫好,但post的請求要以 name:a&age:b 的方式去寫的話,上面你的寫法就會請求不到資料,這時我們就要使用一個外掛來解決這個問題

2.1 安裝qs

  • npm install --save axios vue-axios qs**

2.2 在請求的頁面加入


    import qs from 'qs';
    import axios from 'axios';
    axios.post(
        url,qs.stringify(
           {
            // 通過qs.stringify()將物件解析成URL的形式
            name:'0', age:'2'
           }
                        ),
           {emulateJSON: true},
           {
            headers:{"Content-Type": "application/x-www-form-urlencoded;charset=utf-8",}
           },
              ).then(
                   response=>{
                             console.log(reponse);
                             this.tableData=reponse.data.data
                             }
                    )
    總結:以上所述是給大家介紹的vue中post請求以a=a&b=b 的格式寫遇到的問題
複製程式碼

相關文章