简体   繁体   English

试图将一个数组与嵌套在 object 中的另一个数组进行比较

[英]Trying to compare an array with another array nested in an object

I've been quite stuck for sometime on this problem.我在这个问题上已经被困了一段时间。 If anyone has any guidance on how I can go about this.如果有人对我如何 go 有任何指导。

This function returns all the usernames who have visited any park on the given user's wishlist.此 function 返回访问给定用户愿望清单中任何公园的所有用户名。

getUsersForUserWishlist(users, "karah.branch3"); //> ["dwayne.m55"]
getUsersForUserWishlist(users, "dwayne.m55"); //> []

 const parks = [{ id: 1, name: "Acadia", areaInSquareKm: 198.6, location: { state: "Maine" }, }, { id: 2, name: "Canyonlands", areaInSquareKm: 1366.2, location: { state: "Utah" }, }, { id: 3, name: "Crater Lake", areaInSquareKm: 741.5, location: { state: "Oregon" }, }, { id: 4, name: "Lake Clark", areaInSquareKm: 10602, location: { state: "Alaska" }, }, { id: 5, name: "Kenai Fjords", areaInSquareKm: 2710, location: { state: "Alaska" }, }, { id: 6, name: "Zion", areaInSquareKm: 595.9, location: { state: "Utah" }, }, ]; const users = { "karah.branch3": { visited: [1], wishlist: [4, 6], }, "dwayne.m55": { visited: [2, 5, 1], wishlist: [], }, thiagostrong1: { visited: [5], wishlist: [6, 3, 2], }, "don.kim1990": { visited: [2, 6], wishlist: [1], }, }; function getUsersVisitedForUserWishlist(users, username) {}

If I correctly understood your function must return (as in the example below ) and not what mentionned in your example:如果我正确理解了您的 function 必须返回(如下例所示)而不是您的示例中提到的内容:

getUsersForUserWishlist(users, "karah.branch3"); //> ["don.kim1990"]
getUsersForUserWishlist(users, "dwayne.m55"); //> []

this solve your problem这解决了你的问题

 function getUsersForUserWishlist(users1, userName) {
        //Retreive the user wishlist
        var wishlistInd = users1[arguments[1]]["wishlist"];
        var arrayRes = [];
        //loop throght users array
        for (const [key, value] of Object.entries(users1)) {
           var filteredArray = [];
          if (  `${key}` !== userName ) {
           var filteredArray = value['visited'].filter(value => 
            wishlistInd.includes(value));
            if  (filteredArray.length != 0 ) {
              arrayRes.push( `${key}`);
            }
          }
        }
        return arrayRes;
        }

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM