是否有更简单的方法来创建具有单个元素的数组;如果元素为null,是否为空?

时间:2017-09-22 09:27:43

标签: javascript arrays reactjs ecmascript-6

我以某种方式发现编写选择初始化非常蹩脚:

updateSelectType(event) {
  this.setState({
    selectType: event.target.value,
    selection: this.state.selectedEvent ? [this.state.selectedEvent] : [],
    selectedEvent: null,
  });
}

所以这很简单,我想知道三元是否可以简化?我不想要一个带有null元素的数组:)

1 个答案:

答案 0 :(得分:1)

您可以尝试这种方法

updateSelectType(event) {
  this.setState({
   selectType: event.target.value,
   selection: [this.state.selectedEvent].filter(el => el),
   selectedEvent: null,
  });
}