我无法让一个简单的外部方法在 plone 中正常工作。在我的扩展文件夹中,我有一个名为 blast_query.py 的 Python 脚本,代码如下:
def print_query(self, x):
print(x)
我的外部方法如下所示:
编号:run_blast_query
标题:
模块名称:blast_query
函数名称:print_query
我在 ZMI 中的 python 脚本如下所示:
#Import a standard function, and get the HTML request and response objects.
from Products.PythonScripts.standard import html_quote
request = container.REQUEST
RESPONSE = request.RESPONSE
# Insert data that was passed from the form
query=request.query
context.print_query(context,query)
我只想将查询从表单传递给函数,所以我知道它工作正常。
有任何想法吗?