真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

基于vue添加axios組件,解決post傳參數(shù)為null的問題

好,下面上貨。

創(chuàng)新互聯(lián)專注于大寧網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供大寧營銷型網(wǎng)站建設(shè),大寧網(wǎng)站制作、大寧網(wǎng)頁設(shè)計、大寧網(wǎng)站官網(wǎng)定制、小程序設(shè)計服務(wù),打造大寧網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供大寧網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。

1、安裝axios

npm install axios --save

2、添加axios組件

import axios from 'axios'
axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded';
axios.defaults.baseURL = 'http://localhost:7878/zkview';
Vue.prototype.$ajax = axios;

3、get請求

testGet: function () {
 this.$ajax({
  method: 'get',
  url: '/test/greeting',
  params: {
   firstName: 'Fred',
   lastName: 'Flintstone'
  }
 }).then(function (response) {
  console.log(response);
 }).catch(function (error) {
  console.log(error);
 });
},

4、post請求

testPost: function () {
    var params = new URLSearchParams();
    params.append('name', 'hello jdmc你好');
    params.append('id', '2');
    this.$ajax({
     method: 'post',
     url: '/test/greeting2',
     data:params
//     data: {id: '3', name: 'abc'}
    }).then(function (response) {
     console.log(response);
    }).catch(function (error) {
     console.log(error);
    })
   }

5、運行結(jié)果:

基于vue 添加axios組件,解決post傳參數(shù)為null的問題

基于vue 添加axios組件,解決post傳參數(shù)為null的問題

6、注意:

在使用post方式的時候傳遞參數(shù)有兩種方式,一種是普通方式,一種是json方式,如果后臺接受的是普通方式,那么使用上述方式即可。

普通的formed方式

var params = new URLSearchParams();
params.append('name', 'hello jdmc你好');
params.append('id', '2');
data:params

后臺接收參數(shù):

public Student greeting2(int id,String name) {

json方式

data: {id: '3', name: 'abc'}

后臺接收參數(shù)

public Object greeting2(@RequestBody Object student) {

以上這篇基于vue 添加axios組件,解決post傳參數(shù)為null的問題就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持創(chuàng)新互聯(lián)。


當(dāng)前題目:基于vue添加axios組件,解決post傳參數(shù)為null的問題
網(wǎng)頁URL:http://weahome.cn/article/ijcejc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部