我有:stackoverflow.com/questions/19012903/get-value-from-multi-object 但我修改了这个,我想添加超过4个字符的结果字符串。
function isLong(val)
{
if(val.length > 4){
return true;
} else {
return false;
}
}
var page = [{
title: 'aaa',
text: '111'
}, {
title: 'bbb',
text: '222'
}, {
title: 'ccc',
text: '333'
}, {
title: 'ddd',
text: '444'
}, {
title: 'eee',
text: '444'
}];
console.log([].concat.apply([], '222, 333, 4441, long1, long, long2'.split(', ').map(function (t) {
return page.filter(function (o) {
return o.text === t || isLong(t);
}).map(function (c) {
return c.title
});
})).join(", "));
但是这回报了我所有的价值观。我尝试在行返回o.text === t ||中检查这个isLong(T);
对于这个例子,我想收到:
bbb,ccc,long1,long2
bbb和ccc来自对象页面。 long1和long2是用逗号分隔的自定义字符串。
答案 0 :(得分:1)
var str = '222, 333, 4441, long1, long, long2';
var strArray = str.split(', ');
var result = strArray.map(function(s){
return isLong(s) ? s : page.filter(function(o){ // if word has > 4 chars return word else try to match with page array
return o.text == s;
}).map(function(c){
return c.title; // if matched return title
})[0]; // select first match
}).filter(function(u){
return u; // remove undefined results
});
console.log(result);