如何使用 MVCContrib Route TestHelper 验证操作方法的参数

发布于 2024-10-25 21:39:49 字数 625 浏览 5 评论 0原文

我有一个以分页对象作为参数的操作方法

  public override ActionResult Index(Paging paging) 
  {
        .......
        return View(...);
  }

那么我如何验证 url 以匹配操作方法及其参数呢?如下

Paging paging = new DefaultPaging();
"/Search".ShouldMapTo<SearchController>(action => action.Index(paging));

更新

这是路由定义的样子,Page、PageSize 和 Sort 是 Paging 类的成员

routes.MapRoute(controller.Name, string.Format("{0}/{{Page}}/{{PageSize}}/{{Sort}}", controller.Name),
                       controller.Index().AddRouteValues(new DefaultPaging()));

I have an action method which has pagination object as parameter

  public override ActionResult Index(Paging paging) 
  {
        .......
        return View(...);
  }

So how could I verify the url to match action method and it's parameter? like below

Paging paging = new DefaultPaging();
"/Search".ShouldMapTo<SearchController>(action => action.Index(paging));

Update

Here is how the route definition looks like, Page,PageSize and Sort are member of the Paging class

routes.MapRoute(controller.Name, string.Format("{0}/{{Page}}/{{PageSize}}/{{Sort}}", controller.Name),
                       controller.Index().AddRouteValues(new DefaultPaging()));

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文