https://github.com/ericmbarnard/Knockout-Validation/wiki/Native-Rules
我在我的 MCV3 页面上使用淘汰赛验证。我的情况是我有两个按钮。一个是添加到收藏夹,另一个是保存。添加到集合会根据需要查找以下属性:
FirstName: ko.observable().extend({ required: true }),
LastName: ko.observable().extend({ required: true }),
Title: ko.observable(),
Email: ko.observable().extend({ required: true, email: true }),
Date1: ko.observable(new Date()).extend({ required: true }),
我定义了两个函数来检查页面是否有效:
第一的:
AddToCollection: function () {
if (!viewModel.isValid()) {
viewModel.errors.showAllMessages();
return false;
} else {
this.Collection.push(new Item(this.FirstName(), this.LastName(), this.Title(), this.Email()));
viewModel.clear();
}
},
第二:
save: function () {
if (!viewModel.isValid()) {
viewModel.errors.showAllMessages();
return false;
} else {
$.ajax({
url: '@Url.Action("DoSomethinn")',
type: "POST",
data: ko.toJSON(this),
dataType: "json",
contentType: "application/json; charset=utf-8",
success: function (result) {
}
});
}
}
我想要做的事情是,如果调用 Save,我不希望 FirstName、LastName 和 Email 是必需的,仅验证 Date1,但在调用 AddToCollectoin 时需要 FirstName、LastName 和 Email,但是Date1 不是。如何设置 Only If Native Rule,或者有更好的方法来做到这一点。
任何帮助深表感谢!