Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个模型的主干集合,其中一个属性(region_list)是一个字符串数组。如何找到 region_list 包含特定字符串的所有模型?
collection.filter(function(model){ return ( _.indexOf(model.get('region_list'), 'specific_string') >= 0 ); });
使用 Underscore 的filter和indexOf方法过滤集合中region_list数组中包含 value的所有模型specific_string。
region_list
specific_string
此 .filter() 调用的返回值将是模型数组。