当我只传递 2 个参数时它是如何工作的
列表.cshtml
@Html.PageLinks(Model.PagingInfo, x => Url.Action("List", new { page = x }))
进入这个方法?PagingHelpers.cs
public static MvcHtmlString PageLinks(this HtmlHelper html,
PagingInfo pagingInfo,
Func<int, string> pageUrl)