我想将消息设置为在淘汰赛的验证功能中显示,类似于这里发生的事情:淘汰赛验证插件自定义错误消息但没有异步。
这是我尝试过的,但没有显示验证消息。
this.name = ko.observable().extend({
validation: {
validator: function (val) {
return { isValid:val === 'a', message: 'the value ' + val + ' is not a' };
},
message: 'I dont want this default message'
}
});
有什么好的方法吗?