0

当我尝试使用 Python 中的新聚合框架时,我收到了下一条消息:

OperationFailure: command SON([('aggregate', 'call_log'), ('pipeline', [{'$project': {u'date': '1', u'status': '1', u'number': '1', u'description': '1'}}])]) failed: exception: field path references must be prefixed with a '$' ("1"

蟒蛇的代码:

db.command('aggregate', 'test_collection', pipe_line=[{'$project':{u'date': '1', u'status': '1', u'number': '1', u'description': '1'}}])

这个消息是什么意思?错误在哪里?

谢谢!

4

1 回答 1

2

假设,你应该写 not '1', but 1'1'(带引号)被解释为字符串,这会导致错误。

于 2012-04-30T07:31:21.183 回答