在 Plone 中,我有一个 Z SQL 方法:
SELECT [aapp_qtitle]
,[aapp_mtitle]
,[aapp_sdate]
,[aapp_duration]
FROM [AAPP].[dbo].[M_PageBodyElement] where [aapp_id]=<dtml-sqlvar aapp_id type=int>
如何在我的 Plone 页面代码中设置 aapp_id 的值?
好的,谢谢 Matthew 确切的模板代码是什么?我试过了:
<p tal:define="AAPPInfo python:here.get/AAPPInfo(aapp_id=100003).dictionaries()"></p>
<p tal:repeat="records context/AAPPInfo">
<span tal:replace="records/aapp_qtitle">Title: </span><br>
但我得到名称“AAPPInfo”未定义错误。