1. 程式人生 > >使用fly post請求傳遞引數不成功問題解決

使用fly post請求傳遞引數不成功問題解決

使用qs庫來格式化資料
npm install qs --save 

在main.js中,我們引入qs庫
// post請求是格式化資料
import qs from 'qs';
Vue.prototype.$qs = qs;

進行post請求
    this.$axios
        .post(
          "/app/user/login.do",
          this.$qs.stringify({
            username: this.name,
            password: MD5(this.pwd)
          })
        )
        .then(response => {
          console.log(response.data);
        })
        .catch(error => {
          console.log(error);
          this.$toast("網路錯誤,不能訪問");
        });

到這裡就可以請求成功了!