Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 Zope 新手。我需要从 BTreeFolder2 中删除一堆对象,从 id 1 到 id 15000。当进入管理 Web 界面时,这些对象的排序不正确,所以我不能只选择和删除它们。该订单是严格的阿尔法,所以我得到:
1 10 1000 10000 10001 等...
我的猜测是我将不得不使用 zopectl -debug 并发出一些 Python 命令来选择和删除这些对象。
我不知道该怎么做。你能帮我吗?
谢谢。
app.restrictedTraverse('/path/to/folder').manage_delObjects(list_of_ids) transaction.commit()