reactjs 通过React中的API请求重新发送OTP

xuo3flqw  于 2023-03-17  发布在  React
关注(0)|答案(1)|浏览(139)

我正在尝试通过电子邮件源重新发送OTP。
这就是我得到的回应

这是此请求的API文档

下面是我的代码:

function resendOtp() {

    const data = {
      email: email,
      mobile: mobile,
      source: email,
    }
    axios
    .get(`${API_URL}` + `/user/otpResend`, data)
    .then((response) => {
      console.log(response.data)
    })
    .catch((err) => {
      console.log(err)
    })
  }

我是不是应该发送一个有效载荷来让它工作?我该怎么做?

z9smfwbn

z9smfwbn1#

这些是查询参数
尝试使用查询参数命中URL

const params = new URLSearchParams({
    ...data
}).toString();

.get(`${API_URL}` + `/user/otpResend` + params)

相关问题