带有get参数的Typo3 9.5预填充表单字段

问题描述:

我使用TYPO3系统扩展"form",并希望用GET参数预填充输入字段.

I use TYPO3 system extension "form" and want to prefill an input field with a GET parameter.

TYPO3 8.7.表单预填输入字段有效,但只有no_cache = 1.是否有另一种不停用整个缓存的解决方案?

This TYPO3 8.7. Form prefill input field is working, but only is no_cache=1. Is there another solution without deactivate the whole cache?

谢谢 大卫

您可以禁用表单页面内容列的缓存,例如:

You can disable the cache of the content column of your form page, for example:

lib.content = COA
lib.content{
    10 < styles.content.get
}
[page["uid"] == 512]
    lib.content = COA_INT
[global]