Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
315 views
in Technique[技术] by (71.8m points)

javascript - Object filter not working beacuse of null value in column

I want to filter out object data based on value from an array. The below snippet work fine when no null value, but in case of null value in column it's not working.

Here is StackBlitz

filter() {
    this.dataSource.data = ELEMENT_DATA.filter(({ name }) =>
      this.filterArray.some(n => name.toLowerCase().includes(n.toLowerCase()))
    );
  }
question from:https://stackoverflow.com/questions/65948702/object-filter-not-working-beacuse-of-null-value-in-column

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
filter() {
    this.dataSource.data = ELEMENT_DATA.filter(({ name }) =>
      this.filterArray.some(n => name ? name.toLowerCase().includes(n.toLowerCase()) : "")
    );
  }

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...