0
我想允許用戶通過ID來搜索文檔,或允許其他基於文本的查詢。
代碼:
l_search_results = list(
cll_sips.find(
{
'$or': [
{'_id': ObjectId(s_term)},
{'s_text': re.compile(s_term, re.IGNORECASE)},
{'choices': re.compile(s_term, re.IGNORECASE)}
]
}
).limit(20)
)
錯誤:
<Whatever you searched for> is not a valid ObjectId
完美。謝謝! – Donnie