是的,我已经详细介绍了here的配置选项,因此默认情况下,电子邮件的最大字符长度为64个字符,如here
所述。Auth0员工-电子邮件:用户的电子邮件地址。用户/本地部分的最大长度为64个字符,域部分的最大长度为256个字符。
现在我想知道是否有人想出办法来更改此设置,我希望最大长度为32个字符。
我找不到任何配置选项可以让您更改此设置。.现在这样说..当您拥有一个自定义字段时,您可以按照here
中的说明添加一个验证器var options = {
additionalSignUpFields: [{
name: "address",
placeholder: "enter your address",
// The following properties are optional
icon: "https://example.com/assests/address_icon.png",
prefill: "street 123",
validator: function(address) {
return {
valid: address.length >= 10,
hint: "Must have 10 or more chars" // optional
};
}
},
{
name: "full_name",
placeholder: "Enter your full name"
}]
}
现在看起来不错!但我看不到您可以对默认电子邮件和密码字段进行操作的方法!
任何帮助将不胜感激!