在我的Create视图中,有一个Date picker用于为用户选择日期。然后是编辑视图,我想将相同的日期值传递给编辑视图。这是我的视图属性看起来像
Date picker
@Html.EditorFor(model => model.Date_of_birth, new { htmlAttributes = new { @class = "form-control js-datepicker", Type = "Date" } })
它显示日期选取器,但不显示传递的日期值。
bkhjykvo1#
你应该在你返回编辑视图的控制器中填充动作模型,然后@Html.EditorFor(model => model.Date_of_birth, new { htmlAttributes = new { @class = "form-control js-datepicker", Type = "Date" } })会为你填充数据。
1条答案
按热度按时间bkhjykvo1#
你应该在你返回编辑视图的控制器中填充动作模型,然后
@Html.EditorFor(model => model.Date_of_birth, new { htmlAttributes = new { @class = "form-control js-datepicker", Type = "Date" } })
会为你填充数据。