0

我有: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(", "));

jsfiddle

但这会给我带来所有的价值。我尝试在行中检查这个 return o.text === t || 长(t);

对于这个例子,我想收到:

bbb, ccc, long1, long2

bbb 和 ccc 来自对象页面。long1 和 long2 是我的自定义字符串,用逗号分隔。

4

1 回答 1

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);

示例:http: //jsfiddle.net/YrZNq/6/

于 2013-09-25T21:24:12.500 回答