检查这个小提琴:
我试图做两件事:
首先:当字段为空时不要验证。我知道有一个onlyif选项..但是有更容易的东西吗?
第二:当我点击提交时我需要运行验证的东西(如果你测试我的小提琴,错误信息会弹出,但不会应用errorClass css)
谢谢:D
的CSS:
input.error {
color: red;
border-color: red;
}
JS:
ko.validation.configure({
insertMessages: false,
decorateElement: true,
errorElementClass: 'error',
messagesOnModified: false
});
function SignInViewModel() {
var self = this;
self.userName = ko.observable().extend({
required: true
});
self.password = ko.observable().extend({
required: true
});
self.errors = ko.validation.group(self);
self.login = function (e) {
if (self.errors().length == 0) {
alert('No errors');
} else {
this.errors().forEach(function(data) {
alert(data);
});
//self.errors.showAllMessages(true);
}
}
}
$(function () {
ko.applyBindings(new SignInViewModel());
});
html:
<form>
<fieldset>
<legend>User: <span data-bind='text: errors().length'></span> errors</legend>
<label>User name: <input data-bind='value: userName' type="text"/></label><br/>
<label>Password: <input data-bind='value: password' type="password"/></label>
</fieldset>
<button type="button" data-bind='click: login'>Login</button>
</form>
答案 0 :(得分:7)
第一个解决方案将完成你要求的90%。在用户点击提交之前,或者在删除之前填充的字段之前,它不会显示任何验证。一旦他们打破密封(可以这么说),他们将收到该领域的实时验证反馈。这是我将使用的解决方案,因为它是淘汰验证的行为方式。
self.login = function (e) {
if (self.errors().length > 0) {
self.errors.showAllMessages(true);
this.errors().forEach(function(data) {
alert(data);
});
}
}
如果由于某种原因你必须推迟所有验证反馈,直到他们点击,那么你可能会乱用isModified标志来获得你想要的行为。不过,这对我来说似乎有些愚蠢。
ko.extenders.deferValidation = function (target, option) {
if (option) {
target.subscribe(function(){
target.isModified(false);
});
}
return target;
};
self.userName = ko.observable().extend({
required: {message: 'User name is required' },
deferValidation: true
});
self.password = ko.observable().extend({
required: {message: "Password is required" },
deferValidation: true
});