0
我使用的Bookshelf.js ORM,我需要能夠按日期和有一些問題進行查詢。如何查詢日期Bookshelf.js
這裏是我使用的一個樣本代碼片段。
this.model.query((q) => {
q.where('created_at', '>=', Date.now());
q.orderBy('created_at', 'DESC');
})
.fetch().then(function (model) {
socket.send(JSON.stringify(model));
});
上面的代碼只是返回一個空或空的數組。 任何想法?