我正在尝试进行查询以获取id 1到4之间的所有行。 我正在使用mySQL和sequelize。 查询
`
main.test = function(req,res,next)
{
var param = req.params;
model.Time.find({
where:{
id:{
$between:[1,4]
}
},limit: 10
}).then(function (time) {
console.log("Time"+time);
});
}
`
时获得结果需要解决方法吗?