i want to post Form Data like that.
what should i prepare for sending ima
You need to create an instance of FormData and pass that as the body to fetch, like so:
FormData
const data = new FormData() data.append("something", something) fetch(url, { method: 'POST', body: form })