1

我在尝试使用 python-eve 过滤集合时遇到了一种奇怪的行为,当我使用“where”参数过滤包含另一个文档的 _id 作为值的字段时,如果我添加一个额外的字母,则不会返回任何记录/字段值之后的数字返回记录没有问题,相同的行为发生在任何具有 _id 作为值的字段。正如我在配置文件中看到的那样,在调用 db 时,该值似乎已转换为 $oid,但我不确定为什么有任何想法?

谢谢加斯顿

网址

http://127.0.0.1:5000/contacts?where={"task":"52cdad82a54d7506bc6f9a12"}

返回数据

<resource href="/contacts" title="contacts">
    <link rel="parent" href="" title="home"/>
</resource>

设置.py

contacts= {
    'resource_methods': ['GET', 'POST'],
     'schema':  {

             "timestamp":  {
             'type': 'datetime',
         },
            "task":  {
                'type': 'string'
            },
                "contact_uuid":  {
                'type': 'string'
            },
                "started_by":  {
                'type': 'string'
            },
        }
}

MongoDB 记录

{
"_id": {
    "$oid": "52cdc33ca54d75085073e7ef"
},
"timestamp": {
    "$date": "2014-01-08T21:29:32.603Z"
},
"task": "52cdad82a54d7506bc6f9a12",
"contact_uuid": "43acc81a-bdd2-42dd-bc0f-8279ddd497f4",
"started_by": "admin"
}

MongoDB 配置文件输出

{
"op": "query",
 "ns": "callc.contacts",
 "query": {
"task": {
  "$oid": "52cdad82a54d7506bc6f9a16"
    }
  },
"ntoreturn": 10,
"ntoskip": 0,
"nscanned": 9,
"keyUpdates": 0,
"numYield": 0,
  "lockStats": {
"timeLockedMicros": {
      "r": 172,
  "w": 0
    },
"timeAcquiringMicros": {
  "r": 4,
  "w": 4
}
  },
  "nreturned": 0,
  "responseLength": 20,
  "millis": 0,
  "ts": {
    "$date": "2014-01-09T04:04:31.578Z"
  },
  "client": "XXX.17.153.XXX",
  "allUsers": [
    {
      "user": "xxxxx",
      "userSource": "callc"
    }
  ],
      "user": "xxxx@callc"
}

我正在使用运行 mongod 2.4.7 的 mongolab 中托管的数据库

和 virtualenv,具有以下“pip freeze”输出

  • 地狱犬==0.4.0
  • 夏娃==0.2
  • 事件==0.2.0
  • 烧瓶==0.10.1
  • Flask-Principal==0.4.0
  • 烧瓶-PyMongo==0.3.0
  • 烧瓶上传==0.1.3
  • 烧瓶-WTF==0.9.3
  • Jinja2==2.7
  • MarkupSafe==0.18
  • WTForms==1.0.5
  • Werkzeug==0.9.4
  • 闪光灯==1.3
  • 烧瓶-mongoengine==0.7.0
  • 它的危险==0.22
  • mongoengine==0.8.6
  • passlib==1.6.1
  • py==1.4.18
  • pymongo==2.6.3
  • pytest==2.4.2
  • 请求==2.1.0
  • simplejson==3.3.0
  • wsgiref==0.1.2
4

1 回答 1

2

最新的开发版本支持query_objectid_as_string. 将其设置True为您的“任务”字段,您应该没问题。有关详细信息,请参阅文档

于 2014-01-09T06:54:35.800 回答