plone-在编辑表单时,什么会导致门户目录在自动完成选择字段的源对象中失败?

时间:2019-03-25 13:50:09

标签: python plone plone-5.x

我有一个选择字段的源对象,它是一个自动完成窗口小部件,它依赖于使用门户目录根据用户传递的值来查找内容。不幸的是,在查看“编辑”表单时,portal_catalog有时会返回0个结果,而应该返回1个结果。

应该返回1个结果的函数是'getTerm'。我做了一个打印语句,看它得到了多少结果,并确保传递的值就是该术语的值。我的print语句显示传递的值始终是应该传递的值,但并不总是找到结果。我不确定在添加表单中运行时为什么会失败。

我的界面:

)

我的对象来源:

class IMyContentType(model.Schema):

    organization = schema.Choice(title='',
                                 source=Organizations(),
                                )

这种方法有可能吗?我应该使用其他目录吗?

我还在getTerm函数中尝试了一个简单的searchResults而不是evalAdvancedQuery:

class OrganizationsSource(object):
    implements(IQuerySource)

    def __init__(self,context):
        self.context = context

    def queryOrganizations(self,value):
        catalog = api.portal.get_tool(name='portal_catalog')
        brains = catalog.evalAdvancedQuery(
               AdvancedQuery.MatchRegexp('portal_type','Organization') &
               AdvancedQuery.MatchRegexp('Title',value+"*")
             )
        return [i.Title for i in brains]

    def __contains__(self,value):
        q = self.queryOrganizations(value)
        if len(q) > 0:
            return True
        else:
            return False

    def getTerm(self, value):
        q = self.queryOrganizations(value)
        #Where I check to see if it should be working
        #the value passed in is the one that should be
        print value, len(q)
        return SimpleTerm(title=q[0],value=q[0])

    def getTermByToken(self,token):
        return self.getTerm(token)

    def search(self,query_string):
        q = self.queryOrganizations(query_string)
        return [SimpleTerm(title=v,value=v,token=v) for v in q]

class Organizations(object):
    implements(IContextSourceBinder)

    def __init__(self):
        self.context = self

    def __call__(self, context):
        return OrganizationsSource(context)

我遇到了同样的问题。

我正在使用Plone 5.1。

1 个答案:

答案 0 :(得分:1)

首先,我建议您使用ZCatalog而不是AdvancedQuery。 对于您正在做的事情,没有理由使用AdvancedQuery。 只需通过plone.api https://docs.plone.org/develop/plone.api/docs/content.html#find-content-objects使用常规目录即可 另外,请确保用户具有查看您正在搜索的对象所需的权限。

示例:

from plone import api

def query_organizations(self, search_term):
    search_term = search_term and search_term + '*' or ''
    documents = api.content.find(
        portal_type='Organization',
        Title=search_term,
    )