0
내 레코드를 정렬하고 마지막 인서트 ID를 가져 오기 위해 마지막 레코드를 가져 오려고합니다.Pymongo LastRecord 정렬 오류
cursor = collection.find().sort({'_id':-1}).limit(1)
이 오류가 발생했습니다.
TypeError: if no direction is specified, key_or_list must be an instance of list
나는, 그래서 같은 목록으로
cursor = collection.find().sort([ {'_id':-1} ]).limit(1)
을 넣어 그리고 나는 RoboMongo에서 동일한 쿼리를 실행하려고이 오류
ValueError: not enough values to unpack (expected 2, got 1)
을 가지고 그것을 작동합니다. Pymongo에서 Python 스크립트로 작동하지 않습니다.