Powermail / Typo3:使用图像标题的预填表格字段

时间:2017-08-28 15:02:14

标签: typo3 powermail

使用Typo3 8.7.4 / Powermail 3.21.2

我对Typo3很新,所以我不知道这是否是正确的方法,但是我的问题是:

在网站上有几个子页面,上面有文章的图像/描述。每篇文章都有一个UID存储在图像标题中(不要问我为什么)。 单击图像时,它会链接到另一个带有powermail mailform的页面。

在这种形式中,UID的文本字段应该自动填充图像标题中的UID,这样用户就不必手动完成。基本上就是这样。

我知道您可以使用值或占位符预填充字段,但是我应该使用文本字段还是使用TS代替? 我应该在图片链接中添加什么才能将UID发布到表单中?

或者我这样做完全错了? 所有的帮助表示感谢,谢谢你们,祝你们度过愉快的一天!

2 个答案:

答案 0 :(得分:0)

有几种方法可以在powermail中预填表单字段(查看手册https://docs.typo3.org/typo3cms/extensions/powermail/ForAdministrators/BestPractice/PrefillField/Index.html),我会说没有错误的方法。只需根据您的需要选择合适的。

答案 1 :(得分:0)

你可以这样做。

plugin.tx_powermail.settings.setup.prefill {
    position = CONTENT // Here Position is your powermail form fields
    position {
       table = Your tables
       select {
            selectFields = title
            andWhere.data = GP:title  // Pass your url parameters
            andWhere.wrap = uid=|
            pidInList = 108 // Added Your Pid 
       }
       renderObj = TEXT
       renderObj.field = title
    }
}