我正在尝试使用弹出模式在日历中创建一个事件,而我无法通过jQuery验证来处理事件的开始时间和结束时间字段。
我无法弄清楚如何相互验证两个字段,以便在开始时间之前结束时间无效。
它似乎在第一次弹出表单时显示的默认日期部分工作,但如果我更改开始日期,它将停止工作。另一方面,尝试验证日期的时间部分从未奏效。
查看型号:
public class EventViewModel
{
public int Id { get; set; }
public string Title { get; set; }
[Required]
[DataType(DataType.DateTime)]
[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:yyyy-MM-dd HH:mm}")]
public DateTime Start { get; set; }
[Required]
[DataType(DataType.DateTime)]
[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:yyyy-MM-dd HH:mm}")]
[DateGreaterThan("Start", ErrorMessage = "End date has to be later than start date")]
public DateTime End { get; set; }
public string Color { get; set; }
public bool AllDay { get; set; }
[Required]
public string StudentId { get; set; }
[Required]
public int LessonTypeId { get; set; }
}
控制器:
public async Task<IActionResult> Index()
{
EventViewModel Event = new EventViewModel { Start = DateTime.Now, End = DateTime.Now.AddMinutes(30) };
var user = await GetCurrentUserAsync();
var studentList = await GetTeacherStudentsAsync(user);
ViewData["StudentList"] = new SelectList(studentList, "Id", "FirstName");
var lessonTypeList = _context.LessonTypes.Where(l => l.TeacherId.Equals(user.Id));
ViewData["LessonTypeList"] = new SelectList(lessonTypeList, "LessonTypeId", "Description");
return View(Event);
}
索引视图:
<head>
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/css/tether.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/3.4.0/fullcalendar.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/3.4.0/fullcalendar.css" />
<script type='text/javascript' src="https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/3.4.0/gcal.js"></script>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/jquery-datetimepicker/2.5.4/jquery.datetimepicker.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-datetimepicker/2.5.4/build/jquery.datetimepicker.full.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha.6/js/bootstrap.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#calendar').fullCalendar({
customButtons: {
createButton: {
text: "new event",
click: function() {
$('#createModal').modal('show');
}
}
},
header: {
left: 'prev,next today createButton',
center: 'title',
right: 'month,agendaWeek,agendaDay,listWeek'
},
defaultView: "month",
allDaySlot: false,
eventLimit: true,
editable: true,
navLinks: true,
events: "/Calendar/GetEvents",
eventDrop: function(event, delta, revertFunc) {
alert(event.title + " was dropped on " + event.start.format());
if (confirm("Are you sure you want to make this change?")) {
SaveEvent(event);
} else {
revertFunc();
}
},
eventResize: function(event, delta, revertFunc) {
alert(event.title + " is now from " + event.start.format() + " to " + event.end.format());
if (confirm("Are you sure you want to make this change?")) {
SaveEvent(event);
} else {
revertFunc();
}
}
});
$.validator.addMethod("laterThan", function(value, element, params) {
var start = params.split(" ");
var startDate = new Date(start[0]);
var startTime = start[1].split(":");
var end = value.split(" ");
var endDate = new Date(end[0]);
var endTime = end[1].split(":");
if (startDate == endDate) {
if (parseInt(startTime[0], 10) == parseInt(endTime[0], 10)) {
return parseInt(startTime[1], 10) > parseInt(endTime[1], 10);
} else if (parseInt(startTime[0], 10) < parseInt(endTime[0], 10)) return true;
else return false;
}
return this.optional(element) || startDate < endDate;
}, "End time must be later than start time");
var validator = $("#createForm").validate({
rules: {
Start: "required",
End: {
required: true,
laterThan: $("#Start").val(),
}
}
});
$(function() {
$("#Start").datetimepicker({
format: "Y-m-d H:i",
onChangeDateTime: function(ct) {
$(this).valid();
}
});
$("#End").datetimepicker({
format: "Y-m-d H:i",
onShow: function(ct) {
var start = $("#Start").val().split(" ");
this.setOptions({
minDate: start[0]
});
},
onChangeDateTime: function(ct) {
$(this).valid();
}
});
});
});
function SaveEvent(Event) {
var dataRow = {
Id: Event.id,
Start: Event.start,
End: Event.end
}
$.ajax({
method: 'POST',
url: '@Url.Action("SaveEvent", "Calendar")',
dataType: "json",
contentType: "application/json",
data: JSON.stringify(dataRow),
error: function(result) {
alert("Something went wrong... Event Id was: " + Event.id + ", Start Time was: " + Event.start.format());
}
});
}
function CreateEvent() {
var valid = validator.form();
}
function DeleteEvent(Event) {
var dataRow = {
Id: Event.id
}
$.ajax({
method: 'POST',
url: '@Url.Action("DeleteEvent", "Calendar")',
dataType: "json",
contentType: "application/json",
data: JSON.stringify(dataRow),
error: function(result) {
alert("Something went wrong... Event Id was: " + Event.id)
}
})
}
</script>
</head>
<body>
<div id='calendar'></div>
<div class="modal fade" id="createModal" tabindex="-1" role="dialog" aria-labelledby="createModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title" id="createModalLabel">Create New Event</h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<form id="createForm">
<div class="form-group">
<label for="StudentId" class="col-md-2 form-control-label">Student</label>
<div class="col-md-10">
<select asp-for="StudentId" asp-items="ViewBag.StudentList" class="form-control"></select>
</div>
</div>
<div class="form-group">
<label for="LessonTypeId" class="col-md-3 form-control-label">Lesson Type</label>
<div class="col-md-9">
<select asp-for="LessonTypeId" asp-items="ViewBag.LessonTypeList" class="form-control"></select>
</div>
</div>
<div class="form-group">
<label for="Start" class="col-md-2 form-control-label">Start</label>
<div class="col-md-10">
<input asp-for="Start" class="form-control" id="Start" name="Start" />
</div>
</div>
<div class="form-group">
<label for="End" class="col-md-2 form-control-label">End</label>
<div class="col-md-10">
<input asp-for="End" class="form-control" id="End" name="End" />
</div>
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" id="createButton" onclick="CreateEvent()">Create</button>
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
</div>
</div>
</div>
</div>
</body>
任何建议都将不胜感激!
编辑(20/08/2017) -
我尝试使用Microsoft的指南结合自定义验证,但这似乎也不起作用(一个数据属性也添加到视图模型)。
验证类:
public class DateGreaterThan : ValidationAttribute, IClientModelValidator
{
private readonly string _earlierDate;
public DateGreaterThan (string earlierDate)
{
_earlierDate = earlierDate;
}
protected override ValidationResult IsValid(object value, ValidationContext validationContext)
{
ErrorMessage = ErrorMessageString;
var lateDate = (DateTime)value;
var otherProperty = validationContext.ObjectType.GetProperty(_earlierDate);
if (otherProperty == null)
throw new ArgumentException("Property with this name could not be found");
var earlyDate = (DateTime)otherProperty.GetValue(validationContext.ObjectInstance);
if (lateDate <= earlyDate)
return new ValidationResult(ErrorMessage);
return ValidationResult.Success;
}
public void AddValidation(ClientModelValidationContext context)
{
var error = FormatErrorMessage(context.ModelMetadata.GetDisplayName());
context.Attributes.Add("data-val", "true");
context.Attributes.Add("data-val-error", error);
}
}
答案 0 :(得分:1)
因此,经过几周测试不同选项并对此突破之后,我意识到我试图实现的验证有错误的逻辑,原因如下:
之后只花了几分钟的时间来修补这些问题:
现在,自定义验证码被简化为3条简单的行:
$.validator.addMethod("laterThan", function (value, element) {
var startDate = new Date($("#Start").val());
var endDate = new Date(value);
return this.optional(element) || startDate < endDate;
}, "End time must be later than start time");
感谢您的建议!
答案 1 :(得分:0)
我认为您的案例的最佳选择是'MVC Foolproof Validation'。您可以为您的案例使用“GreaterThan”或“LessThan”数据注释。所以你可以在你的'End'属性中注释这样的东西:
[GreaterThan("Start", ErrorMessage = "Expiry Date must be greater than Activation Date", PassOnNull = true)]
检查this以获取有关Foolproof的更多信息。