1
目標:我試圖找到一種方法,讓用戶根據一個索引頁上的最大和最小价格對租賃進行排序。根據價格對Mongodb數據進行排序
我的問題是我能弄清楚如何讓它工作的唯一方法就是專門爲低價格和高價格創建兩個單獨的頁面。我只想要一個主索引。
如下圖所示的頁面pricelow由低數據的過濾器價格高
app.get("/pricelow", function(req, res){
Listings.find({}).sort({price: 1}).exec(function(err, allListings){
if(err){
console.log(err);
} else {
res.render("pricelow",{listings:allListings});
}
})
});
//下面顯示的pricehigh頁高數據的過濾器,以低廉的價格
app.get("/pricehigh", function(req, res){
Listings.find({}).sort({price: -1}).exec(function(err, allListings){
if(err){
console.log(err);
} else {
res.render("pricehigh",{listings:allListings});
}
})
});
非常驚人的答案。非常感謝你的幫助。 – AndrewLeonardi