这是我以前用pymongo
更新mongo db中的计时器对象的方法collection.update_one (
{'chat_id':update.message.from_user['id']},
{
"$set": {
"telegram_timer_object": Binary(dill.dumps( j.run_once
( Time_out_function, QUESTION_TIMEOUT, context=chat_id ) ))
},
}
)
虽然检索对象已更改且不相同
jobqueue_object = dill.loads(collection.find_one ( {'chat_id':
update.message.from_user['id']} )['telegram_timer_object'])
jobqueue_object.schedule_removal()
如何解决它...... ???
答案 0 :(得分:1)