我正在使用 Primefaces,但是我不能使用他们的 p:captcha 组件,因为它不能被 Ajax 渲染/更新。
因此,我正在尝试使用 reCaptcha 的 Ajax Api 通过使用 Recaptcha.create 在表单上动态创建它。这是代码:
Recaptcha.create(/*public_code*/,
'captchadiv', {
tabindex : 1,
theme : "red",
callback : Recaptcha.focus_response_field
});
Captcha 已创建,但它不验证来自 ajax 按钮的操作,例如 p:commandButton。我究竟做错了什么?