이 문제는 아마 업데이트 연산자를 지정하지 않아서 발생 했을것 입니다 .예를 들어 값을 사용하려면 $set을 사용하세요. before)collection.update_one({"_id": "fh98h43f89fh4fh"}, {"some_field": "some update"}) after)collection.update_one({"_id": "fh98h43f89fh4fh"}, {"$set": {"some_field": "some update"}})
ValueError: update only works with $ operators
이 문제는 아마 업데이트 연산자를 지정하지 않아서 발생 했을것 입니다 .예를 들어 값을 사용하려면 $set을 사용하세요. before)collection.update_one({"_id": "fh98h43f89fh4fh"}, {"some_field": "some update"}) after)collection.update_one({"_id": "fh98h43f89fh4fh"}, {"$set": {"some_field": "some update"}})
2024.05.20