我正在尝试对我的tx_form实施captcha扩展。 表单工作正常,带有输入字段的验证码代码显示正常。
我不确定这需要去哪里以及何时触发该功能:
func run<Input: Codable, Output: Codable>(input: Input, output: Output, converter: (Input) -> Output) throws
到目前为止我的表格:
$response = GeneralUtility::_GP('captchaResponse');
if (\ThinkopenAt\Captcha\Utility::checkCaptcha($response)) {
// Captcha valid
...
} else {
// Captcha invalid
...
}
答案 0 :(得分:0)
您需要为此实施自己的修整机。我建议使用https://extensions.typo3.org/extension/pxa_form_enhancement/或类似的。