我正在使用一個MongoDB數據庫。 For the front AngularJS。我正在使用貓鼬。Mongoose,AngularJS,NodeJS
我:
app.get("/images", function(req, res) {
mongoose.model('Image').find(function (err, images) {
res.send(images);
});
});
app.listen(3000);
它正常工作,當我去:http://localhost:3000/images
則:
<div ng-repeat="photo in photos">
<!-- My Data List -->
<h3>{{photo.name}}</h3>
</div>
直到這裏,一切都很好。
但是我將有如千位和千位的數據顯示。 因此,我需要像前面的「無限滾動」的東西,我也需要限制查詢範圍或分頁的API http://localhost:3000/images
???
我該如何着手處理大量數據?
謝謝!
謝謝,我將採取看! – Carlos 2014-10-06 16:02:54