如何通过字符串长度在MongoDB的结果排序问题,怎么解决

发布网友 发布时间:2022-04-23 21:05

我来回答

1个回答

热心网友 时间:2022-05-05 21:40

example = {_id: "XXX", text: "YYY"}

db.example.aggregate([
{$project : {text : 1, length : {$size : "$text"}}},
{$sort : {length : 1}}
]);
I think this will do the job, but only for mongo 2.6 and above

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com