javascript Axios GET请求参数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript Axios GET请求参数相关的知识,希望对你有一定的参考价值。

axios.get('/your-url', {
  params: {
    yourParam: 'yourValue',
  },
})
  .then((response) => {
    const { data } = response;
  })
  .catch((error) => {
    console.log(error);
  });

以上是关于javascript Axios GET请求参数的主要内容,如果未能解决你的问题,请参考以下文章