汇总排序后如何找到项目的索引?

时间:2019-03-05 20:30:51

标签: javascript node.js mongodb mongoose aggregation-framework

我希望能够在其输出中显示项目的索引。

这是我的代码:

return len(word) - 1

我对使用聚合没有问题,并且能够对所需字段进行分组。这是一个示例输出,我已经注释掉了我要寻找的内容。

def find_first_vowel(word):
    i = 0   
    while i < len(word):
        if word[i] in vowels:
            return i
        i += 1
    return len(word) - 1

0 个答案:

没有答案