Pymongo:跳过光标中的行

时间:2016-10-27 11:10:55

标签: cursor pymongo

如何跳过光标中的一行。我用了next()但是我收到了一个错误。 这是我的代码:

for row in cursor:
           if(...):
             move to next line
           else :
              ...

谢谢

1 个答案:

答案 0 :(得分:1)

尝试这样的事情:

for row in cursor:
   if (...):
      continue

   standard logic here....