I had a png image as raw data,
And my png image like that:
PNG
IHDR $Gæ pHYs.#.#x�?v�iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c145 79.163499, 2018/08/13-16:40:22 "> <rdf:RDF ....
And I created a formData like that,
console.log(pngImage)
var data = new FormData()
data.append('logo', edit.logo)
But When I receive the request, there is no data from formData of request.
How can I send this png image with axios request. Please Help!