Immutable模糊搜索
/ 1 min read
情景
开发中遇到的问题,Immutable.js数据很复杂,List嵌套Map,Map又有一个bList的值,bList是由bMap组成的,要过滤出bMap下某一value是否包含所键入的string。
大致简化模型如下:
相关的mock数据和keynote可以在百度云上查看,密码:xxge
。
解决方法
- 首先筛选出符合条件的section
- 再更新section下的students(
array
)
这里的update方法详细见官方介绍
If no key is provided, then the updater
function return value is returned as well.