admin管理员组文章数量:1345447
I have an array as:
var arr =
[
{
"id":3,
"first_name":"Laila",
"last_name":"McCaine",
"gender":"female",
"populations":[{"population_name":"Heart failure"}, {"population_name":"AMI"}],
"score": 55.0
},
{
"id":5,
"first_name":"Riva",
"last_name":"Rontgen",
"gender":"female",
"populations":[{"population_name":"Pnumonia"}],
"score": 85.0
},
{
"id":8,
"first_name":"Emily",
"last_name":"Rosewood",
"gender":"female",
"populations":[],
"score": 25.0
}
];
and variables :
var score='';
var population='';
var status = '';
I want to use array filter
function with and
conditions such as
Get records having score
less than 40, status
= 1 and population_name
as "heart failure".
The problem is, given 3 variables are dynamic
and filter
should not be applied if its value is ''.
How can I achieve this?
I have an array as:
var arr =
[
{
"id":3,
"first_name":"Laila",
"last_name":"McCaine",
"gender":"female",
"populations":[{"population_name":"Heart failure"}, {"population_name":"AMI"}],
"score": 55.0
},
{
"id":5,
"first_name":"Riva",
"last_name":"Rontgen",
"gender":"female",
"populations":[{"population_name":"Pnumonia"}],
"score": 85.0
},
{
"id":8,
"first_name":"Emily",
"last_name":"Rosewood",
"gender":"female",
"populations":[],
"score": 25.0
}
];
and variables :
var score='';
var population='';
var status = '';
I want to use array filter
function with and
conditions such as
Get records having score
less than 40, status
= 1 and population_name
as "heart failure".
The problem is, given 3 variables are dynamic
and filter
should not be applied if its value is ''.
How can I achieve this?
Share Improve this question asked Apr 27, 2016 at 12:10 DevDev 6,72013 gold badges71 silver badges112 bronze badges 2- Do you want to apply array filter automatically every time the array gets modified? – Redu Commented Apr 27, 2016 at 12:13
-
Well, it's quite straight-forward to check whether the filters are
""
; what have you tried? – T.J. Crowder Commented Apr 27, 2016 at 12:14
2 Answers
Reset to default 10Something like this:
arr.filter(function(item) {
var ok = true;
if (score !== '') {
ok = item.score < score;
}
if (ok && population !== '') {
// check it
ok = item.populations.map(function() {return item.population_name;}).indexOf(population) > -1;
}
if (ok && status !== '') {
// check status
}
return ok;
});
var arr =
[
{
"id":3,
"status": 1,
"first_name":"Laila",
"last_name":"McCaine",
"gender":"female",
"populations":[{"population_name":"Heart failure"}, {"population_name":"AMI"}],
"score": 55.0
},
{
"id":5,
"status": 1,
"first_name":"Riva",
"last_name":"Rontgen",
"gender":"female",
"populations":[{"population_name":"Pnumonia"}],
"score": 85.0
},
{
"id":8,
"status": 0,
"first_name":"Emily",
"last_name":"Rosewood",
"gender":"female",
"populations":[],
"score": 25.0
}
];
function filterRecords( arr ){
return arr.filter(function( record ){
return record.score > 40 && record.status && (record.populations.filter(function( population ){
return population.population_name == 'Heart failure';
})).length;
});
}
console.log( filterRecords( arr ) );
<script src="http://codepen.io/synthet1c/pen/WrQapG.js"></script>
本文标签: Javascript array filter by checking multiple conditionsStack Overflow
版权声明:本文标题:Javascript array filter by checking multiple conditions - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743797485a2540696.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论