用于传递参数MVC5的日期选择器

本文关键字:日期 选择器 MVC5 参数 用于 | 更新日期: 2023-09-27 18:28:19

是的,感觉像是一个很有趣的问题,但对这一切来说仍然是新的:)

我在一个库中有一个类,它应该基于几个变量生成文档,这些变量应该从MVC5 web应用程序传递。

我看了几个教程,但我无法理解,所以也许我处理这个问题的方式不对?

这是我的型号:

      public class SummaryTicketsReportModel
        {
            public bool ServiceDesk { get; set; }
            [DisplayFormat(DataFormatString = "{0:DD/MM/YYYY", ApplyFormatInEditMode = true)]
            [DataType(DataType.Date)]
            [DisplayName("From")]
            public DateTime StartDate { get; set; }
            [DisplayFormat(DataFormatString = "{0:DD/MM/YYYY", ApplyFormatInEditMode = true)]
            [DataType(DataType.Date)]
            [DisplayName("From")]
            public DateTime EndDate { get; set; }

    //Do I need this?
            //public SummaryTicketsReportModel ()
            //{
            //   StartDate = new DateTime();
            //    EndDate = new DateTime();
            //}

这是我的控制器:

public class SummaryReportController : Controller
    {
        // GET: SummaryReport
        public ActionResult Index()
        {
            return View();
        }
        //POST Action
        [HttpPost]
        public ActionResult Index(SummaryTicketsReportModel serviceDesk, SummaryTicketsReportModel startDate, SummaryTicketsReportModel endDate)
        {
            // takes in the view model
            var selectedServiceDesk = serviceDesk;
            var selectedStartDate = startDate;
            var selectedEndDate = endDate;
            var generateReport = new TicketSummaryReport();
//Needs to access the following: MonthSummaryReport ( ServiceDesk, StartDate, EndDate, summaryDocX) 
            //return generateReport.MonthsSummaryReport();
        }
    }

这是我的观点:

@using System.Drawing
@model SummaryTicketsReportModel
@{
    ViewBag.Title = "TicketsSummaryReport";
}

<h2>TicketsSummaryReport</h2>
@using (Html.BeginForm())
{
    <tr>
        <td>
            @Html.TextBox("", String.Format("{0:d}", Model.StartDate))
        </td>
        <td>
            @Html.TextBox("", String.Format("{0:d}", Model.EndDate))
        </td>
        <td style="text-align: center">
            @Html.CheckBoxFor(model => model.ServiceDesk)
        </td>
    </tr>
    <input type="submit"/>
}

用于传递参数MVC5的日期选择器

为了使MVC模型绑定工作,HTML表单元素的id必须与SummaryTicketsReportModel的属性名称匹配。

所以你需要这样做:

@Html.TextBox("StartDate", String.Format("{0:d}", Model.StartDate))
@Html.TextBox("EndDate", String.Format("{0:d}", Model.EndDate))

或者,使用您在SummaryTicketsReportModel:中应用的注解优点

@Html.TextBoxFor(model => model.StartDate)
@Html.TextBoxFor(model => model.EndDate)

在你的控制器中,试试这个:

[HttpPost]
public ActionResult Index(SummaryTicketsReportModel model)
{
    // takes in the view model
    var selectedServiceDesk = model.ServiceDesk;
    var selectedStartDate = model.StartDate;
    var selectedEndDate = model.EndDate;
    //The rest of your code
    return View();
}

我还没有测试过,所以希望没有其他问题。