使用 axios 將用戶圖像上傳到strapi (uploading user image to strapi using axios)


問題描述

使用 axios 將用戶圖像上傳到strapi (uploading user image to strapi using axios)

如何解決這個問題?需要幫助</p>


參考解法

方法 1:

Try

axios({
        method: 'post',
        url: `${strapi}/upload`,
        data: JSON.stringify(bodyFormData),
        headers: {
          'Content‑Type': 'multipart/form‑data',
          }
     })

方法 2:

Update the key "ref" to be "User" only not "Users"

(by Cj Oyalesuser8254635Banna)

參考文件

  1. uploading user image to strapi using axios (CC BY‑SA 2.5/3.0/4.0)

#Axios #post #strapi #multipartform-data #http-status-code-500






相關問題

如何從 Contentful 中獲取單個條目並按字段值查詢? (How to fetch a single entry from Contentful and query by field value?)

VUE 中的 Axios 承諾失敗,無法讀取未定義的屬性“toUpperCase” (Axios promise in VUE failed with Cannot read property 'toUpperCase' of undefined)

Symfony 4 - 使用 Axios 提交表單? (Symfony 4 - Submit form with Axios?)

Laravel:帶有axios的表單不保存 (Laravel: form with axios not saving)

使用 axios 將用戶圖像上傳到strapi (uploading user image to strapi using axios)

我的 module.exports 返回為 [object Object] (My module.exports return as [object Object])

即使驗證要求無效,數據仍在發送,解決此問題的最佳方法是什麼? (Data is sending even if validation requirements are not valid, whats the best way to approach this?)

如何等到使用 Axios 上傳文件 (How to wait until file is uploaded using Axios)

axios 請求錯誤:使用 Heroku 的 ECONNREFUSED (axios request Error: ECONNREFUSED with Heroku)

為什麼我的 axios 調用即使在解決之後仍返回 undefined? (Why does my axios call return undefined even after then is resolved?)

為什麼在使用 axios.post 時我的頁面上有一個 OBJECT PROMISE (Why i have a OBJECT PROMISE on my page when using axios.post)

如何在使用反應測試庫單擊父組件上的按鈕後測試子組件呈現文本? (How to test the child component render text after the button on the parent component click with react testing library?)







留言討論