Quantcast
Channel: User Just code - Stack Overflow
Viewing all articles
Browse latest Browse all 41

Answer by Just code for How To delete object Array in objects state react

$
0
0

You have 2 issues in your code

1) You are not returning the new state when you are inside the state,

 this.setState(prevState => {      return {

here you are actually returning the new state.

so, your code should look like this

this.setState(prevState => {      return {        ...prevState, storeData: prevState.storeData.map(store => {                    if (store.code == storeCode) {            return {              ...store,              saveProducts: [                ...store.saveProducts.filter(product => product.id !== saveProductsId)              ]            };          } else {            return store;          }        })      }    })

2) You are comparing ...store.saveProducts.filter(product => product !== saveProductsId) here you need product.id instead of product

demo


Viewing all articles
Browse latest Browse all 41

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>