我只想在定义'req.query.p'的情况下考虑where子句:
exports.select = function(req, res) {
db.Pelicula
.findAndCountAll({
limit : req.query.limit,
offset : req.query.offset,
where : ["nombre = ?", req.query.p]
})
.success(function(resp){
console.log(JSON.stringify(resp.rows, null, 4).bold.get);
res.json({peliculas : resp.rows, meta : { total : resp.count}});
});
}
答案 0 :(得分:0)
你可以这样做:
where : req.query.p ? ["nombre = ?", req.query.p] : null