Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.3k views
in Technique[技术] by (71.8m points)

axios 请求体里,为什么没有参数

我写的有问题么?在线等

  import axios from 'axios'
  axios({
    method: 'get',
    url: "http://192.168.4.206:8858/purchase/listAll", // 测试
    data: {
      start: this.search.date[0],
      end: this.search.date[1],
      amountMin: this.search.money1,
      amountMax: this.search.money2,
      txt: this.search.key,
    }
  }).then(res => {
    console.log(res.data)
  }).catch(error => {
  });

image.png


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

get方法,本身就没有data选项的。data选项表示请求体。
你的get请求应该使用config里的params进行参数拼接。

axios({
  method: 'get',
  // ...
  config: {
    params: {
        start: this.search.date[0],
        // ...
    }
  }
})

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...