fetch ('http://localhost:3000/api/demos/create/${this.state.name}/${this.state.img}', {
method: 'POST',
})
The problem with this method is that it sends me this request and it's wrong
http://localhost:3000/api/demos/create/dasda/C:/fakepath/Screen%20Shot%202016-12-13%20at%205.43.40%20PM.png
For example, from the postman, I send it as a body and it works, but not here, any ideas?