26

我有奇怪的问题。我的日期验证在 Chrome 中不起作用。我已经尝试过这个答案,但它对我不起作用。

我的模型中有这个:

[Display(Name = "Date")]
[DataType(DataType.Date)]
public DateTime Date { get; set; }

我的观点:

<div class="editor-field">
@Html.TextBoxFor(model => model.Item.Date, new { @class = "picker" })
@Html.ValidationMessageFor(model => model.Item.Date)
</div>

$(document).ready(function () {
    $('.picker').datepicker({
        dateFormat: 'dd.mm.yy',
        changeMonth: true,
        changeYear: true,
        selectOtherMonths: true
    });
});

在 Opera 和 Firefox 中一切正常,但 Chrome 不喜欢这种类型的日期。我不断收到以下错误The field 'Date' must be a date

有任何想法吗?

更新

当代码在局部视图中时,似乎存在问题。当我将该代码复制到主页时,验证工作正常。

我在我的主视图中插入部分视图,就像这样:

@Html.Partial("_CreateOrEdit", Model)

上面的代码在局部视图中:

@model Pro.Web.Models.Model

<div class="editor-field">
@Html.TextBoxFor(model => model.Item.Date, new { @class = "picker" })
@Html.ValidationMessageFor(model => model.Item.Date)

$(document).ready(function () {
$('.picker').datepicker({
    dateFormat: 'dd.mm.yy',
    changeMonth: true,
    changeYear: true,
    selectOtherMonths: true
});

</script>
});

更新2

毕竟它不起作用。有时有效,有时无效。我在日期上点击了几次,有时验证通过了。对于同一日期,可能有好的和错误的验证。

这是日期字段的输出 html:

<div class="editor-field">
<input class="picker" data-val="true" data-val-date="The field Date must be a date." data-val-required="The Date field is required." id="date" name="Item.Date" type="text" value="1.1.0001. 0:00:00" />
<span class="field-validation-valid" data-valmsg-for="Item.Date" data-valmsg-replace="true"></span>
</div>
4

6 回答 6

19

这里的情况完全一样(部分观点)

我通过删除验证属性并在服务器端执行验证来解决它:

$('#date').removeAttr("data-val-date");
于 2013-12-12T16:06:48.153 回答
11

在我看来,问题在于 MVC 正在为日期 HTML5 输入生成[type=date]. 这导致 chrome 中的有效日期格式与系统日期格式相同。

您可以使用以下属性将 MVC 中的日期格式设置为与 JqueryUI 通用:

[DataType(DataType.Date), DisplayFormat( DataFormatString="{0:dd.MM.yy}", ApplyFormatInEditMode=true )]

第二个想法是使用文章中的代码:Creating a Native HTML 5 Datepicker with a Fallback to jQuery UI

还有一件事。关于 html 输入中的日期有一个很好的话题:有没有办法改变输入类型=“日期”格式?

于 2013-04-29T18:53:41.357 回答
5

我通过删除验证属性解决了它

@model Pro.Web.Models.Model

<div class="editor-field">
@{ Html.EnableClientValidation(false); }
@Html.TextBoxFor(model => model.Item.Date, new { @class = "picker" })
@Html.ValidationMessageFor(model => model.Item.Date)
@{ Html.EnableClientValidation(true); }
于 2016-04-06T19:48:38.667 回答
2

一年后参加聚会有点晚了,但我已经尝试了我能找到的关于这个错误的所有解决方案,但没有一个有帮助。因此,对于像我这样苦苦挣扎的人来说,这就是解决这个问题的方法。

添加到 jquery.validate.globalize.js 及其缩小版本的末尾(取决于您使用的是什么)这段代码。

... 
   $.validator.methods.range = function (value, element, param) {
        var val = Globalize.parseFloat(value);
        return originalMethods.range.call(this, val, element, param);
    };


}(jQuery, Globalize));

Globalize.culture("en-GB");

当然,在引号内使用您自己的文化设置。

希望能帮助到你!

于 2015-03-26T08:23:17.453 回答
1

问题似乎与<input type="date" />(HTML5)有关,因为规范说有效值被定义为RFC3339

所以我把我的视图改成这样:

<script>
    $(function () {
         $("#validfrom").datepicker({
             altField: "#ValidFrom",
             altFormat: "yy-mm-dd"
         });
    });
</script>

<div class="editor-label">
    @Html.LabelFor(model => model.ValidFrom)
</div>
<div class="editor-field">
    <input id="validfrom" type="text" name="validfrom" />
    @Html.HiddenFor(model => model.ValidFrom)
    @Html.ValidationMessageFor(model => model.ValidFrom)
</div>

希望能帮助到你。

于 2013-07-15T14:11:48.593 回答
0

我有同样的错误。通过应用 datetime 作为类型来解决它,

 @Html.EditorFor(model => model.LineResetAllowStartDate, new { htmlAttributes = new { @class = "form-control" ,  @type = "datetime" } })

类似地只用时间

 @Html.EditorFor(model => model.LineResetAllowStartDate, new { htmlAttributes = new { @class = "form-control" ,  @type = "time" } })
于 2016-11-20T07:49:43.257 回答