如何将getValidationErrorMessage用于tcomb表单枚举

时间:2019-03-05 15:32:47

标签: javascript reactjs tcomb-form-native tcomb

在文档中找到以下内容,可为超级类型提供自定义验证错误消息。

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超级类型(数组,对象等),但是没有运气。我看不到我的验证函数为枚举运行。有人知道该怎么做吗?

0 个答案:

没有答案