0
已解決。請參閱下面的答案。Bookshelf.js限制查詢
我只想得到有限的結果。
雖然第二個工作,第一個沒有。這裏缺少什麼?
首先查詢
app.get('/ind', function (req, res) {
youtube.where('status', 0).fetch(function (qb) {
qb.limit(10);
}).then(function (data) {
data = data.toJSON();
});
});
第二個查詢
app.get('/photos', function (req, res) {
user.where('id', 1).fetch({
withRelated: [{
'photos': function (qb) {
qb.limit(2);
}
}]
}).then(function (data) {
data = data.toJSON();
res.send(data);
});
});