0

我正在使用淘汰赛验证插件。我的 observable 有一些验证规则。是否可以定义在验证期间失败的规则?

我尝试使用方法 rules(),但它只返回附加规则的列表,而不是某些规则的状态(失败与否):

http://i.imgur.com/5YvHPiw.png?1?8272

我以这种方式扩展了 observable:

self.SomeField = ko.observable().extend({
    required: {
        message: "The field is required.",
        params: true
    },
    maxLength: {
        message: "Please enter no more than 300 characters.",
        params: 300 
    }
});

我未经验证的观察看起来像:

http://i.imgur.com/7ybfLfZ.png

谢谢你。

4

0 回答 0