我想更改Validator的要求是StrongPassword,而不是这些默认选项:
{ minLength: 8, minLowercase: 1, minUppercase: 1,
minNumbers: 1, minSymbols: 1, returnScore: false,
pointsPerUnique: 1, pointsPerRepeat: 0.5,
pointsForContainingLower: 10, pointsForContainingUpper: 10,
pointsForContainingNumber: 10, pointsForContainingSymbol: 10 }
我需要在没有minSymbols:
的情况下完成,有办法改变这些条件吗?
您是否尝试使用isStrongPassword(str [, options])
,而minSymbols仅设置值0。选项就是你发布的这个对象。