使用ASP.NET Core Razor页面实现排序

时间:2018-10-04 13:32:26

标签: c# sorting asp.net-core razor-pages

我编写了以下代码来实现排序。我想在两个排序请求之间维护sortingData(OrderDirection,SortField)。不知何故我无法实现这一目标。

//在.cshtml页面中

    @{
        SortingPagingInfo info = (SortingPagingInfo)ViewData["SortingPagingInfo"];
    }
<form method="post">
    @Html.Hidden("SortField", info.SortField)
    @Html.Hidden("SortDirection", info.SortDirection)
    @Html.Hidden("PageCount", info.PageCount)
    @Html.Hidden("PageSize", info.PageSize)
    @Html.Hidden("CurrentPageIndex", info.CurrentPageIndex)
 <table class="table">
        <thead>
            <tr>
                <th>
                    <a asp-page="./Page" asp-route-sortData="@info">
                        @Html.DisplayNameFor(model => model.Tabl[0].Col1)
                    </a>

                </th>
                <th>
                    <a asp-page="./Page" asp-route-sortData="@info">
                        @Html.DisplayNameFor(model => model.Tabl[0].Col2)
                    </a>

                </th>
 <th></th>
            </tr>
        </thead>
        <tbody>
            @foreach (var item in Model.Table)
            {
                <tr>
                    <td>
                        @Html.DisplayFor(modelItem => item.Col1)
                    </td>
                    <td>
                        @Html.DisplayFor(modelItem => item.Col2)
                    </td>
</tr>
            }
        </tbody>
    </table>

</form>

-----在cshtml.cs页面中

get请求如下:

public async Task OnGetAsync(SortingPagingInfo sortData)
        {
            SortingPagingInfo info = new SortingPagingInfo();
            if (string.IsNullOrEmpty(sortData.SortDirection))
            {
                info.SortField = "Col1";
                info.SortDirection = "OrderBy";
                info.PageSize = 10;
                info.PageCount = Convert.ToInt32(Math.Ceiling((double)(_context.Tab.Count()
                               / info.PageSize)));
                info.CurrentPageIndex = 0;
                this.sortPageData = info;
                ViewData["SortingPagingInfo"] = info;
            }
            else
            {
                info = (SortingPagingInfo)ViewData["SortingPagingInfo"];
            }
            tab1= await _context.Tabl.OrderByDynamic(info.SortField, info.SortDirection).ToListAsync();


        }

我正在尝试传递对象并将其维护在ViewData中,以便可以对其进行访问。但是每次都只返回空值。有没有更好的方法可以实现对“剃刀页面”的排序,或者是否可以使其工作?

1 个答案:

答案 0 :(得分:1)

您不能简单地将对象作为链接上的路线数据参数转储。实际上,这里的实际情况是Razor只会在您的ToString实例上调用info。您有几种选择:

  1. 突破每个属性并将其分别传递:

    <a asp-page="./Page" asp-route-sortField="@info.SortField" asp-route=sortDirection="@info.SortDirection" asp-route-pageCount="@info.PageCount" asp-route-pageSize="@info.PageSize" asp-route-currentPageIndex="@info.CurrentPageIndex">
    
  2. 序列化对象,然后在您的操作中反序列化它:

    <a asp-page="./Page" asp-route-sortData="@JsonConvert.SerializeObject(info)">
    

    然后,您需要更改操作以接受字符串:

    public async Task OnGetAsync(string sortData)
    

    在操作中,然后将该字符串反序列化为SortingPagingInfo的实例:

    var info = JsonCovert.DeserializeObject<SortingPagingInfo>(sortData);
    
  3. 改为让您的链接提交按钮(您仍然可以将它们设置为链接样式),并让它们实际提交包含所有这些数据的表单:

    <form asp-page-handler="./Page" method="get">
        @Html.Hidden("SortField", info.SortField)
        @Html.Hidden("SortDirection", info.SortDirection)
        @Html.Hidden("PageCount", info.PageCount)
        @Html.Hidden("PageSize", info.PageSize)
        @Html.Hidden("CurrentPageIndex", info.CurrentPageIndex)
        <button type="submit" class="btn btn-link">
            @Html.DisplayNameFor(model => model.Tabl[0].Col1)
        </button>
    </form>
    

    但是,您当前有一个包装整个表的表单,并且表单中不能包含表单。因此,您需要重新构造HTML,以确保每个链接都在页面上的任何其他表单之外。