gpt4 book ai didi

Javascript过滤对象数组跳过空字符串

转载 作者:行者123 更新时间:2023-12-02 14:44:43 25 4
gpt4 key购买 nike

我正在 NodeJS 中构建 REST API。我正在构建服务器端分页、排序和过滤。

我有一个过滤方法的简单实现。如果该项目不包含任何空字符串,则此方法有效。但是,如果该项目包含空字符串,则 .toString() 方法会失败,因为 item[filterBy]null

Cannot read property 'toString' of null

如果项目包含空字符串,如何更新过滤器函数以简单地返回 true,以跳过比较操作?

  // Apply filter to array of objects
// TODO: Empty strings breaks the filter
items = items.filter(item =>
item[filterBy].toString().trim().toLowerCase().indexOf(filterValue.toLowerCase()) !== -1)

最佳答案

要跳过包含空字符串的项目,请尝试以下操作:

item[filterBy] && item[filterBy].toString()

因此,您的代码将是:

items = items.filter(item =>
item[filterBy] && item[filterBy].toString().trim().toLowerCase().indexOf(filterValue.toLowerCase()) !== -1)

关于Javascript过滤对象数组跳过空字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56449852/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com