sequelize “findbyid” is not a function but apparently “findAll” is
问题 I am getting a very strange problem with sequelize, When I try to call the function findAll it works fine (same for create and destroy), but when I try to call function "findById", it throws "findById is not a function" (same for "FindOne"). //works fine var gammes = models.gamme.findAll().then(function(gammes) { res.render('admin/gammes/gestion_gamme',{ layout: 'admin/layouts/structure' , gammes : gammes, js: "gammes" }); }); // throws models.gamme.findById is not a function models.gamme