我試圖從db中獲取記錄。sequelize findAll()只返回一條記錄
db.relations.findAll({where: {organisation: orgName}})
.then(found => {
console.log('Found relations by name: ', found[0].dataValues);
})
.catch(error => {
console.log('Error: ', error);
});
而且我只有一條記錄,但db有一個以上的同名記錄。
然後我嘗試的findAll沒有PARAMS
db.relations.findAll()
.then(found => {
console.log('Found relations by name: ', found[0].dataValues);
})
.catch(error => {
console.log('Error: ', error);
});
,我和ID的一個記錄再次得到= 1