有没有办法隐藏我的目录结果的特定对象?我有一个不想显示的配置文件。我正在按 id 过滤,但它看起来很丑。
from Products.CMFCore.utils import getToolByName
def search(context):
catalog = getToolByName(context, 'portal_catalog')
items = catalog()
for item in items:
if item.id != "config_file":
'do something'