如何在axios Reactjs中发送查询参数

问题描述 投票:-1回答:1

这是我的邮递员要求:

http/localhost:8080/sample-market/marketAPI/1234/product/publish?productOne=testing&productTwo=checking

[有人可以通过axios帮我发帖吗? productOne和productTwo是查询参数,1234是路径参数

javascript reactjs typescript post axios
1个回答
0
投票

我认为您应该先阅读DOC:

来自: https://www.npmjs.com/package/axios

首先下面的URL看起来像get方法:

http/localhost:8080/sample-market/marketAPI/1234/product/publish?productOne=testing&productTwo=checking

但是如果您仍然想使用POST,那么就可以了:

axios.post('http/localhost:8080/sample-market/marketAPI/1234/product/publish', {
    productOne: 'testing',
    productTwo: 'checking'
  })
  .then(function (response) {
    console.log(response);
  })
  .catch(function (error) {
    console.log(error);
  });
© www.soinside.com 2019 - 2024. All rights reserved.