1
我使用簡單的環回模型查找查詢我的數據庫。例如從loopback模型創建映射查找輸出
app.models.User.find({
where: {userId: id, status: 'active'},
fields: ['key', value']}).then(function(userData){
});
這裏userData是一個數組。我知道「關鍵」將是唯一的。那麼,有沒有一種方法可以將結果與「關鍵」「值」對結合起來?
由於
什麼是數據庫?蒙戈? –
其postgresql。 –