javascript - useState and initial value as array does not work - Stack Overflow

I'm trying to use react hooks in my project and I have a problem with useState when I use array as

I'm trying to use react hooks in my project and I have a problem with useState when I use array as value.

As you can see in my code below, when I display zoneItems that it should be like items array I get an empty array all the time. Would you have an explanation why?

When I use an object instead of array it works

const ShippingCostZone = ({ zone, datas, selectedProducts, getProductById }) => {
    const items = datas.items.filter(item => item.zoneId === zone.id)
    console.log('========> items', items) // ---- SHOW the good values
    const [zoneItems, updateItems] = useState(items)
    console.log('========> zoneItems  ', zoneItems)   // ---- SHOW all the time []
.........

Thanks in advance

I'm trying to use react hooks in my project and I have a problem with useState when I use array as value.

As you can see in my code below, when I display zoneItems that it should be like items array I get an empty array all the time. Would you have an explanation why?

When I use an object instead of array it works

const ShippingCostZone = ({ zone, datas, selectedProducts, getProductById }) => {
    const items = datas.items.filter(item => item.zoneId === zone.id)
    console.log('========> items', items) // ---- SHOW the good values
    const [zoneItems, updateItems] = useState(items)
    console.log('========> zoneItems  ', zoneItems)   // ---- SHOW all the time []
.........

Thanks in advance

Share Improve this question asked Aug 18, 2020 at 13:51 VictorVictor 572 silver badges10 bronze badges 1
  • Did you ensure that all the items are not of the zone that you are using to test the functionality? Also the last console.log shows all values or just empty array []? – Kenny John Jacob Commented Aug 18, 2020 at 14:07
Add a ment  | 

2 Answers 2

Reset to default 4

Due to async nature of hooks, you assignment useState(items) could be executed after you read the content of zoneItems. But react provides an hook that will be fired every time ponent will be loaded, or as you prefer, every time zoneItems changes his value: I'm talking about useEffect hook.

So if you want to print the zoneItems content every time is updated, just write something like this:

useEffect(() => {
    console.log(zoneItems);
}, [zoneItems])

This is the way that react provides to manage async assignment of state.

I think you should initialize the state first as an array first then update it, as follows:

const ShippingCostZone = ({ zone, datas, selectedProducts, getProductById }) => {
    const items = datas.items.filter(item => item.zoneId === zone.id)
    console.log('========> items', items)

    const [zoneItems, updateItems] = useState([])
    
    updateitems(items)

    console.log('========> zoneItems  ', zoneItems)

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745184189a4615556.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信