typicode/jsonplaceholder

sending same id(201) in response on post request

itsbhatt opened this issue · 2 comments

i'm sending a post request using axios in react but getting same id in every element in response.

image

after post request getting same id

  • (201)

image

  • response -

image

7KiLL commented

Probably this is not an issue. Jsonplaceholder is simple REST mock, not working back-end with logic. It will not increment your ID, it simply add +1 to existing 200 items. It always will be 201.

thank you it was indeed that, it helped!