c# MVC通过下拉过滤表

本文关键字:过滤 MVC | 更新日期: 2023-09-27 18:06:56

我有一个视图,其中有一个表,显示值。我想添加一个下拉列表,过滤状态列的结果。例如,如果我选择"正在审核",只会显示状态为"正在审核"的记录。以下是我的观点。

@model IEnumerable<DRT.Models.Master>
@{
    ViewBag.Title = "Index";
}
<h2>Index</h2>
<p>
    @Html.ActionLink("Create New", "Create")
</p>
<table class="table">
<tr>
    <th>
        @Html.DisplayNameFor(model => model.RequestType.Name)
    </th>
    <th>
        @Html.DisplayNameFor(model => model.Reviewer.Name)
    </th>
    <th>
        @Html.DisplayNameFor(model => model.Status.Name)
    </th>
    <th>
        @Html.DisplayNameFor(model => model.ProjectName)
    </th>
    <th>
        @Html.DisplayNameFor(model => model.ProjectLocation)
    </th>
    <th>
        @Html.DisplayNameFor(model => model.Requestor)
    </th>
    <th>
        @Html.DisplayNameFor(model => model.DateReceived)
    </th>
    <th>
        @Html.DisplayNameFor(model => model.ReviewCompDate)
    </th>
    <th>
        @Html.DisplayNameFor(model => model.ProjectFolerLink)
    </th>
    <th>
        @Html.DisplayNameFor(model => model.ModellingReferralDate)
    </th>
    <th>
        @Html.DisplayNameFor(model => model.ModellingReviewCompletionDate)
    </th>
    <th>
        @Html.DisplayNameFor(model => model.SewerMaintenanceReferralDate)
    </th>
    <th>
        @Html.DisplayNameFor(model => model.SewerMaintenanceReviewCompletionDate)
    </th>
    <th>
        @Html.DisplayNameFor(model => model.FlowControlReferralDate)
    </th>
    <th></th>
</tr>
@foreach (var item in Model) {
<tr>
    <td>
        @Html.DisplayFor(modelItem => item.RequestType.Name)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.Reviewer.Name)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.Status.Name)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.ProjectName)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.ProjectLocation)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.Requestor)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.DateReceived)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.ReviewCompDate)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.ProjectFolerLink)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.ProjectComments)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.DischargeLocationID)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.DischargeDistrict)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.SystemType)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.AffectedRequlator)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.StartDateOfDischarge)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.DurationOfDischarge)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.RequestFlowRate)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.ApprovedDischargeRate)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.DischargeLocationComments)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.ModellingReferralDate)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.ModellingReviewCompletionDate)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.SewerMaintenanceReferralDate)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.SewerMaintenanceReviewCompletionDate)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.FlowControlReferralDate)
    </td>
    <td>
        @Html.ActionLink("Edit", "Edit", new { id=item.MasterId }) |
        @Html.ActionLink("Details", "Details", new { id=item.MasterId }) |
        @Html.ActionLink("Delete", "Delete", new { id=item.MasterId })
    </td>
</tr>
}
</table>

c# MVC通过下拉过滤表

你基本上需要一个SELECT元素在你的视图,当使用选择的东西,你可以将选择的值张贴到动作方法,你将使用这个值时,从你的数据库获取数据。

你可以创建一个新的视图模型

public class ListAndSearchVm
{
  public IEnumerable<DRT.Models.Master> Data { set;get;}
  public IEnumerable<SelectListItem> Statuses { set;get;}
  public string SelectedStatus { set;get;}
}

现在在GET操作中,需要加载视图模型的Statuses属性和Data属性。有一个参数来接受从状态过滤器下拉列表中选择的选项值。根据该参数的值得到过滤后的数据。

public ActionResult Index(string selectedStatus="")
{
  var vm= new ListAndSearchVm();
  //Hard coding 2 items for demo. You can read this from your db table
  vm.Statuses = new List<SelectListItem> {
     new SelectListITem { Value="Open", Text="Open"},
     new SelectListITem { Value="Closed", Text="Closed"},
  };
  var data= dbContext.Masters;
  if(!String.IsNullOrEmpty(selectedStatus))
  {
     data = data.Where(f=>f.Status.Name==selectedSatatus);
  }      
  vm.Data = data.ToList();
  return View(vm);
}

现在在你的视图

@model ListAndSerchVm
@using(Html.BeginForm("Index","YourControllerName",FormMethod.Get))
{
  <label> Select a status</label>
  @Html.DropDownListFor(f=>f.SelectedStatus,Model.Statuses,"Select")
  <input type="submit" value="Filter" />
}
<table>
<tr>
    <th>Request type</th>
    <th>Reviewer</th>
    <th>Status</th>
</tr>
@foreach(var item in Model.Data)
{
  <tr>
       <td>@item.RequestType.Name)</td>
       <td>@item.Reviewer.Name</td>
       <td>@item.Status.Name</td>
  </tr>
}
</table>