我正在尝试排序 id
模态:
module.exports = {
autoPK: false,
attributes: {
id: {
type: 'integer',
autoIncrement:true,
primaryKey: true
},
}
}
询问:
mymodal.find().sort({id: 'asc'}).exec(function (err, res) {
console.log(res)
});
数据:
[ { id: '2', },{ id: '1'},{ id: '11' } ]
实际的:
[ { id: '1', },{ id: '11'},{ id: '2' } ]
**预期的:
[ { id: '1', },{ id: '2'},{ id: '11' } ]**
谁能帮帮我。请..
按字符串排序,但按数字(整数)排序。
我的查询或帆水线标准排序有任何问题吗