在文档中找到以下内容,可为超级类型提供自定义验证错误消息。
t.Number.getValidationErrorMessage = (value, path, context) => {
return 'bad number';
};
Age.getValidationErrorMessage = (value, path, context) => {
return 'bad age, locale: ' + context.locale;
};
对于t.enum({...}
我尝试了t.enum,t.Enums,t.Enum和其他各种tcomb超级类型(数组,对象等),但是没有运气。我看不到我的验证函数为枚举运行。有人知道该怎么做吗?