考虑这个例子。我正在使用Lodash
'data': [
{
'category': {
'uri': '/categories/0b092e7c-4d2c-4eba-8c4e-80937c9e483d',
'parent': 'Food',
'name': 'Costco'
},
'amount': '15.0',
'debit': true
},
{
'category': {
'uri': '/categories/d6c10cd2-e285-4829-ad8d-c1dc1fdeea2e',
'parent': 'Food',
'name': 'India Bazaar'
},
'amount': '10.0',
'debit': true
},
{
'category': {
'uri': '/categories/d6c10cd2-e285-4829-ad8d-c1dc1fdeea2e',
'parent': 'Food',
'name': 'Sprouts'
},
'amount': '11.1',
'debit': true
},
当我做
_.filter(summary.data, {'debit': true})
我把所有的东西都拿回来了。
我想要的是?
我想要所有对象在哪里category.parent == 'Food'
,该怎么办?
我试过了
_.filter(summary.data, {'category.parent': 'Food'})
并得到
[]