较为完善的搜刮函数

打印 上一主题 下一主题

主题 950|帖子 950|积分 2850

当执行多条件搜刮的时候,我利用的是filter封装的函数,封装函数的代码可以提升我们代码的可读性以及可复用性,同时封装的越好,利用起来越轻便,以下是我封装的一个利用filter封装的多条件搜刮函数,同时也留意了对空值的处理
 
  1. function multiConditionSearch(data, conditions) {
  2.   // 根据sessionStorage中的change_id来选择不同的数据源
  3.     data = globalData;
  4.   // 取消所有复选框的选中状态
  5.   $(".notice_nav .checkbox_id input").prop("checked", false);
  6.   // 辅助函数,用于获取嵌套对象的值
  7.   function getNestedValue(obj, path) {
  8.     const parts = path.split(".");
  9.     return parts.reduce((current, key) => {
  10.       return current && current[key] !== undefined ? current[key] : null;
  11.     }, obj);
  12.   }
  13.   // 过滤掉无效的条件
  14.   const validConditions = Object.fromEntries(
  15.     Object.entries(conditions).filter(([_, value]) => {
  16.       if (typeof value === "object" && !Array.isArray(value)) {
  17.         if ("like" in value) {
  18.           return value.like.trim() !== "";
  19.         } else if ("start" in value && "end" in value) {
  20.           return value.start.trim() !== "" || value.end.trim() !== "";
  21.         }
  22.       }
  23.       return (
  24.         value !== null && value !== undefined && String(value).trim() !== ""
  25.       );
  26.     })
  27.   );
  28.   // 根据有效条件过滤数据
  29.   const searchResult = data.filter((item) => {
  30.     return Object.keys(validConditions).every((key) => {
  31.       const condition = validConditions[key];
  32.       // 获取嵌套属性的值
  33.       const itemValue = getNestedValue(item, key);
  34.       if (typeof condition === "object" && !Array.isArray(condition)) {
  35.         if (condition.start && condition.end) {
  36.           const itemTime = new Date(itemValue).getTime();
  37.           const startTime = new Date(condition.start).getTime();
  38.           const endTime = new Date(condition.end).getTime();
  39.           return itemTime >= startTime && itemTime <= endTime;
  40.         } else if (condition.like) {
  41.           if (typeof itemValue === "string") {
  42.             return itemValue
  43.               .toLowerCase()
  44.               .includes(condition.like.toLowerCase());
  45.           }
  46.           return false;
  47.         }
  48.       } else {
  49.         return itemValue === condition;
  50.       }
  51.     });
  52.   });
  53.   // 调用 render 函数进行数据渲染
  54.   page = 0;
  55.   
  56.     render(searchResult);
  57.   return searchResult;}
复制代码
该函数可以放在公共界面,在其他页面调用
  1. conditions = {
  2.       name: { like: $("#drug_name").val() },
  3.       create_time: { start: $("#start_date").val(), end: $("#end_date").val() },
  4.     };
  5.     data = multiConditionSearch(data, conditions);
复制代码
在页面上调用仅仅需要设置不同的类名用以匹配对应的数据即可,后续的赋值则是确保分页在点击的时候可以获取到正确的数据,而不是错误的全局数据,同时我的函数也可以处理嵌套的数据,关键函数即
  1. // 辅助函数,用于获取嵌套对象的值
  2.   function getNestedValue(obj, path) {
  3.     const parts = path.split(".");
  4.     return parts.reduce((current, key) => {
  5.       return current && current[key] !== undefined ? current[key] : null;
  6.     }, obj);
  7.   }
复制代码
用于提取嵌套的数据格式,类似于
  1. const obj = {
  2.   a: {
  3.     b: {
  4.       c: "Hello, World!"
  5.     }
  6.   }
  7. };
  8. // 使用 getNestedValue 获取值
  9. const result1 = getNestedValue(obj, "a.b.c");
  10. console.log(result1);  // 输出: "Hello, World!"
  11. // 路径无效的示例
  12. const result2 = getNestedValue(obj, "a.x.y");
  13. console.log(result2);  // 输出: null
  14. // 路径部分为 null 或 undefined 的示例
  15. const result3 = getNestedValue(obj, "a.b.c.d");
  16. console.log(result3);  // 输出: null
复制代码
通过这个函数,我可以处理现在我遇到的各种多条件搜刮,且并不影响太多性能的同时,可以随时通过增加筛选条件来适配更多的条件筛选

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

用户国营

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表