使用 Axios 傳送查詢參數
使用 Axios 發出 POST 要求時,可能會遇到需要附加查詢參數的場景網址。這與在請求正文中發送資料不同。
一個常見問題是在 React Native 中嘗試使用 Axios 傳遞查詢參數時,由於查詢參數無效而導致 400 錯誤。
To為了解決這個問題,Axios 要求您指定與請求資料不同的查詢參數。雖然 post 的函數簽章是 axios.post(url[, data[, config]]),但您需要將查詢參數傳遞為設定物件中的第三個參數。
為了說明,請考慮以下程式碼:
<code class="javascript">.post(`/mails/users/sendVerificationMail`, null, { params: { mail, firstname }}) .then(response => response.status) .catch(err => console.warn(err));</code>
此程式碼將發送一個帶有空正文和指定查詢參數的 POST 請求:
POST http://localhost:8000/api/mails/users/sendVerificationMail?mail=lol%40lol.com&firstname=myFirstName
以上是如何在 POST 請求中使用 Axios 傳送查詢參數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!