elbywan / wretch

A tiny wrapper built around fetch with an intuitive syntax. :candy:
MIT License
4.83k stars 98 forks source link

DELETE method with body #28

Closed tam315 closed 6 years ago

tam315 commented 6 years ago

Hi @elbywan, wretch simplifies my code dramatically. thanks a lot.

btw, in some cases, I have to use DELETE method with the body. For now it seems that sending a body using the DELETE method on wretch is not allowed.

I guess DELETE with body is not prohivited by the regulation.

so if I write some PRs, could you accept it? does this make sense?

thanks.

elbywan commented 6 years ago

Hi @elbywan, wretch simplifies my code dramatically. thanks a lot.

Hi @junkboy0315, thanks 😄.

btw, in some cases, I have to use DELETE method with the body.

Did you try using the .body or .json functions to set the body (https://github.com/elbywan/wretch#body-types) ?

I have no issues on Chrome :

capture d ecran 2018-07-19 a 08 13 10 capture d ecran 2018-07-19 a 08 13 41
tam315 commented 6 years ago

My bad... .json worked perfectly. Thank you!