javascript数组对象值包含另一个数组值

时间:2014-09-25 11:09:26

标签: javascript arrays node.js

我有一个像这样的数组

"chapters":[
            {
                "_id": "5422c6ba0f6303ba22720e14",
                "chapter_name": "Morbi imperdiet libero sed.",
                "sub_title": "Nam id elit tincidunt amet.",
                 "mystatus": "noidea"   

            },
            {
                "_id": "5422bd0d5cb79ae6205b2f6a",
                "chapter_name": "Donec id accumsan volutpat.",
                "sub_title": "Cras volutpat velit nullam.",
                 "mystatus": "noidea"

            },
            {
                "_id": "5423ea5f17c83ad41da1765e",
                "chapter_name": "Donec id accumsan volutpat.",
                "sub_title": "Cras volutpat velit nullam.",
                 "mystatus": "noidea"

            }

        ],

我还有另外一个

"currentstat": [
        "5423ea5f17c83ad41da1765e",
        "5422c6ba0f6303ba22720e14",
        "5422bd0d5cb79ae6205b2f6a"
    ],

我想检查currentstat中包含的任何chapters._id数组值。

我试过这样。

for (var i = 0; i < chapters.length; i++) {
  var attenId = currentstat.toString();
  if (attenId.indexOf(chapters[i]._id) != -1) {
  }
}

没有

,我无法得到结果
  

var attenId = currentstat.toString();

我还需要做一件事。

我需要根据status数组值将这些chapters数组值分配给相应的currentstat数组。

status: [ 'passed', 'passed', 'attending']

整个代码就像这样

for (var i = 0; i < chapters.length; i++) {
  var attenId = currentstat.toString();
  if (attenId.indexOf(chapters[i]._id) != -1) {
    allChapters[i].mystatus = (status[i]) ? status[i] : 0;
  }
}

但该值未分配给相应的_id请帮忙!

2 个答案:

答案 0 :(得分:4)

示例:

var currentstat = ["1","2","3"];
var chapters = [{_id:"2"}, {_id:"4"}, {_id:"6"}];

var objects = chapters.filter(function(chapter) {
    return ~currentstat.indexOf(chapter._id);
});

只需将这些数组替换为您的数据,objects将包含具有相同ID的对象(在此特定示例中为[{_id:"2"}]

答案 1 :(得分:1)

最粗糙的方法是2个循环,一个在另一个内部:

for (var i = 0; i < currentstat.length; i++) {
    for (var j = 0; j < chapters.length; j++) {
        if (currentstat[i] === chapters[j]._id){
            alert('found it at: ' + i + ' ' + currentstat[i]);
        }
    }
}

检查this fiddle

原油方法不那么简单:

for (var i = 0; i < chapters.length; i++) {
    if (currentstat.indexOf(chapters[i]._id) >= 0) {
        alert('found ' + currentstat[i] + ' at index ' + i);
    }
}

fiddle here.