首頁 > web前端 > js教程 > 如何根據屬性過濾房地產家庭物件數組?

如何根據屬性過濾房地產家庭物件數組?

Patricia Arquette
發布: 2024-12-31 21:20:12
原創
862 人瀏覽過

How to Filter a Real Estate Home Object Array Based on Attributes?

根據屬性過濾物件陣列

問題:

你有一個真實的數組房地產對象並希望根據特定屬性(例如價格、平方英尺、床位數量和數量)對其進行過濾

解決方案:

要過濾數組,可以使用Array.prototype.filter

代碼:

var newArray = homes.filter(function(el) {
  return el.price <= 1000 &&
         el.sqft >= 500 &&
         el.num_of_beds >= 2 &&
         el.num_of_baths >= 2.5;
});
登入後複製

說明:

每個過濾器方法採用一個測試每個過濾器方法都採用一個測試元素的回調函數在數組中。如果測試傳回 true,則該元素將包含在新數組中。在這種情況下,回呼函數會檢查 home 物件是否符合指定條件,如果滿足則傳回 true。

實例:

var obj = {
    'homes': [{
            "home_id": "1",
            "price": "925",
            "sqft": "1100",
            "num_of_beds": "2",
            "num_of_baths": "2.0",
        }, {
            "home_id": "2",
            "price": "1425",
            "sqft": "1900",
            "num_of_beds": "4",
            "num_of_baths": "2.5",
        },
        // ... (more homes) ...     
    ]
};

// (Note that because `price` and such are given as strings in your object,
// the below relies on the fact that <= and >= with a string and number
// will coerce the string to a number before comparing.)

var newArray = obj.homes.filter(function(el) {
  return el.price <= 1000 &&
         el.sqft >= 500 &&
         el.num_of_beds >= 2 &&
         el.num_of_baths >= 1.5; // Changed this so a home would match
});

console.log(newArray);
登入後複製

以上是如何根據屬性過濾房地產家庭物件數組?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板