我需要使用Underscore.js过滤上面的JSON
如何只返回"Balance“与0不同的项?
{
Currency: 'BCC',
Balance: 0,
Available: 0,
Pending: 0,
CryptoAddress: null
}, {
Currency: 'BLOCK',
Balance: 0,
Available: 0,
Pending: 0,
CryptoAddress: 'Bd24akqYDG97k6xmUqsnxAtrBRoXeffQhx'
}, {
Currency: 'BTC',
Balance: 0.00153928,
Available: 0.00153928,
Pending: 0,
CryptoAddress: '1BgWkjF1mwe1MZoCvxMmfSJ6fppNMD5GSx'
}, {
Currency: 'BTG',
Balance: 2e-8,
Available: 2e-8,
Pending: 0,
CryptoAddress: null
}
https://stackoverflow.com/questions/47640833
复制相似问题