Keycloak 如何在KeyClope中验证失败后重新加载自定义字段

Keycloak 如何在KeyClope中验证失败后重新加载自定义字段,keycloak,Keycloak,如何在KeyClope中验证失败后重新加载自定义字段,其他表单属性正在重新加载,但自定义属性未加载 表单属性 value="${(register.formData.email!'')}" id="user.attributes.phone" 自定义属性 value="${(register.formData.email!'')}" id="user.attributes.phone" 尝试更改为: value="${(register.formData['user.attribut

如何在KeyClope中验证失败后重新加载自定义字段,其他表单属性正在重新加载,但自定义属性未加载

表单属性

value="${(register.formData.email!'')}" 
id="user.attributes.phone"
自定义属性

value="${(register.formData.email!'')}" 
id="user.attributes.phone"
尝试更改为:

value="${(register.formData['user.attributes.phone']!'')}"