Azure AD B2C 自定义策略的本地化显示 unicode 字符而不是实际字母



我正在尝试在自定义策略中实施本地化并创建本地化资源:

<LocalizedResources Id="signin_es">
<LocalizedStrings>
<LocalizedString ElementType="UxElement" StringId="button_continue">INICIAR SESIÓN</LocalizedString>
<LocalizedString ElementType="ClaimType" ElementId="signInName" StringId="DisplayName">Correo electrónico o número de teléfono</LocalizedString>
<LocalizedString ElementType="ClaimType" ElementId="password" StringId="DisplayName">Contrasena</LocalizedString>
<LocalizedString ElementType="ClaimType" ElementId="password" StringId="UserHelpText">Introducir la contraseña</LocalizedString>
</LocalizedStrings>
</LocalizedResources>

当它在浏览器中呈现时,"Correo electrónico o número de teléfono"它显示"Correo electr&#243;nico o n&#250;mero de tel&#233;fono"

我正在使用的数据 uri 是urn:com:microsoft:aad:b2c:elements:contract:selfasserted:2.0.0的,并且使用我自己的 html 页面。我可以再补充一件事,unicode charecters 只显示标签,文本框的占位符是完美的。

我尝试了以前版本的DATAURIurn:com:microsoft:aad:b2c:elements:contract:selfasserted:1.2.0

这奏效了,所以我认为这是 2.0.0 版的问题。

相关内容

  • 没有找到相关文章

最新更新