[Answered ]-Why I'm getting "Not Found: /api/v1.0/productos/${this.id_product}/"

1👍

There is issue where you are setting path. You have to use ` instead of ‘ when you add data property in string. So, path will be like:

const path = `http://127.0.0.1:8000/api/v1.0/productos/${this.id_product}/`

Leave a comment