Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个检查输入的验证器。 如果值有效,则验证器显示“有效”,如果值未通过验证,则显示“无效”。
我可以在不为有效状态添加额外标签的情况下管理它吗(通过设置可见性:真/假)?
验证器控件是否具有替代值,或者我必须覆盖它?
不,验证器旨在在出现验证错误时呈现文本,否则不显眼。
当然,您可以创建一个继承自BaseValidator它的新 Validator 来执行此操作。
BaseValidator
有一篇文章很好地概述了如何做到这一点。