2015-05-11 90 views
2

使用Facebook Immutable。我如何搜索不可變映射的鍵值。在下面的結構中。按鍵值搜索不可變映射

{ 
     issue: 328, 
     version: 1, 
     filename: '328-1', 
     title: 'The Lorem ipsum dolor cover', 
     date: { 
      year: 2015, 
      month: 8, 
      day: 22 
     } 
    }, 
    { 
     issue: 329, 
     version: 2, 
     filename: '328-2', 
     title: 'The Lorem ipsum dolor cover', 
     date: { 
      year: 2015, 
      month: 8, 
      day: 22 
     } 
    }, 

我需要搜索具有相同值的所有'問題',然後搜索'版本'值。

回答

3

啊確定的工作了使用findEntry並通過一個函數,

_t.findEntry(function(obj){return obj.get('issue') ===328 && obj.get('version') === 1;})