Where art thou
程序员文章站
2022-09-14 17:06:11
写一个 function,它遍历一个对象数组(第一个参数)并返回一个包含相匹配的属性-值对(第二个参数)的所有对象的数组。如果返回的数组中包含 source 对象的属性-值对,那么此对象的每一个属性-值对都必须存在于 collection 的对象中。 例如,如果第一个参数是 [{ first: "R ......
写一个 function,它遍历一个对象数组(第一个参数)并返回一个包含相匹配的属性-值对(第二个参数)的所有对象的数组。如果返回的数组中包含 source 对象的属性-值对,那么此对象的每一个属性-值对都必须存在于 collection 的对象中。
例如,如果第一个参数是 [{ first: "romeo", last: "montague" }, { first: "mercutio", last: null }, { first: "tybalt", last: "capulet" }]
,第二个参数是 { last: "capulet" }
,那么你必须从数组(第一个参数)返回其中的第三个对象,因为它包含了作为第二个参数传递的属性-值对。
如果你被难住了,记得使用 read-search-ask编写你自己的代码。
这是一些对你有帮助的资源:
function where(collection, source) {
var arr = [];
// what's in a name?
console.log(collection.length); //3
console.log(object.keys(source)); //last
for(var i = 0; i < collection.length; i++) {
var n = 0;
var souarr = object.keys(source);
for(var j = 0; j < souarr.length; j++) {
//hasownproperty 确定某个对象是否具有带指定名称的属性。
//object.hasownproperty(proname) object必需。对象的实例。proname必需。一个属性名称的字符串值。
if(collection[i].hasownproperty(souarr[j])) {
if(collection[i][souarr[j]]=== source[souarr[j]]) {
n++;
}
}
}
if (object.keys(source).length === n ){ // !!!
arr.push(collection[i]);
}
}
console.log(arr);
} where([{ first: "romeo", last: "montague" }, { first: "mercutio", last: null }, { first: "tybalt", last: "capulet" }], { last: "capulet" });
上一篇: 2018-07-29学习mysql小结
下一篇: 幽默笑话六则,笑翻你
推荐阅读