繁体   English   中英

如何使用在React的初始状态声明的空数组?

[英]How can I use an empty array declared on React's initial state?

我正在尝试创建一个显示列表列表的应用程序。 目前,我一直试图访问首次声明初始状态时声明的空数组。 这是我声明的状态:

this.state = {
    newList: {
      category: '',
      items: []
    },
    lists: [],
    itemText: ''
};

“ newList”代表我要推送到“列表”数组中的项目,该列表包含所有列表,如图所示,我使用此方法将“ newList”对象推送到“列表”数组中。 “ itemText”值用作将输入到列表中的文本的占位符,而“ category”则为列表命名。

createListItem(index) {

  //if the value is not empty
  if (this.state.itemText) {

    //create a temporary variable with the list item determined by the index
    let tempList = this.state.lists[index]

    //assign another temporary variable for the "items" array in the list item
    let itemsArray = tempList.items

    //create temporary variable that holds the text that will be pushed into the "items" array
    let newValue = this.state.itemText

    itemsArray.push(newValue)

    this.setState ({
      lists: tempList,
      itemText: ''
    })
  }
}

此方法从无状态组件接收“索引”作为参数,该组件管理列表的呈现。

问题是:

我正在尝试访问我推送到“列表”数组中的“ newList”项目的“ items”数组,因为就目前而言,它是undefined 我试图用一些值预填充数组,但似乎无法在“ newList”对象中获取它。

非常感谢您的帮助,希望您过得愉快!

我已经解决了 我不是将空数组推入列表创建方法的对象中。

createCategory() {

if (this.state.newList.category) {

  let existingLists = new Array(...this.state.lists)
  let newList = {...this.state.newList, items: new Array(0)}

  existingLists.push(newList)

  this.setState ({
    lists: existingLists,
    newList: {
      category: ''
    }
  })
 }
}

非常感谢大家的帮助!

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM