Skip to content
Advertisement

Vue.js Axios bug HTTP request change my array but don’t show change

I have a very strange problem in vue.js/axios.

Scenario 1 : clear my products variable BEFORE send an HTTP request (see “<<<<< SCENARIO 1” mark). Then set products variable with a new array. It works but we see a flicker (due to the HTTP request duration). So I decided to clear the products variable IN the request.

Scenario 2 : clear my products variable IN the HTTP request. (see “<<<<< SCENARIO 2” mark).

But I don’t know why in Scenario 2 : my products variable is modified but the View don’t change ! So my product variable has 3 products with related quantity. Then quantity of one product change so I clear the product variable and refresh with the HTTP request. All is the same but quantity of 1 product has changed. But the view don’t reflect this !

JavaScript

There is the Product component if that help :

JavaScript

Advertisement

Answer

The problem is that we must refresh the data of Product with the props.

Basically when the parent (here the Cart component) change the quantity of Product with the props (here initQuantity), we must say to Product instance that he must change is data (here quantity) with his props (initQuantity).

So we must add a watch at the end of Product component :

JavaScript

I found my answer here

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement