English 中文(简体)
页: 1
原标题:asp.net mvc with optional parameters and partial views
  • 时间:2009-09-21 13:33:42
  •  标签:

i)

AlbumsController PhotoRepository Index.aspx (view)

在索引内,即有部分电汇。 我想通过一个jax和一个jax助手来更新。

问题在于,我希望有能力做以下工作:

http://www.mysite.com/Albums
http://www.mysite.com/Albums?FilterTag=Birthdays

(一) 发生下列错误:

www.un.org/Depts/DGACM/index_spanish.htm 目前的控制器类文件记录员行动指数在以下行动方法之间含糊不清:

System.Web.Mvc.ActionResult Index(System.String) on type Controllers.AlbumsController System.Web.Mvc.ActionResult Index() on type Controllers.AlbumsController

i 本来会认为,如同p.net mvc本会表明,如果在座标的参数中一经通过,那将采用指数(指示塔)方法,如果一对t通过参数,则将达到指数。

建议

最佳回答

问题是,MVC Routing发动机能够说明:

(1) 指标

以及

2) 将标记指数与标签挂钩=1

既然这样说,要求就含糊不清。

你们可以这样做:

public ActionResult Index(string tag)
{
  if(String.IsNullOrEmpty(tag))
  {
    // index code goes here
    return View("Index");
  }
  else
  {
    // code to h以及le filtered view goes here
    return View("Tag");
  }
}

或你可以强迫参数与习俗特性相符:

ASP.NET MVC 模棱两可的行动方法

or you can set up routes so that Albums 以及 Albums?FilterTag=X explicitly go to different actions (Incidentally, I d recommend "Albums" 以及 "Albums/X"):-

  routes.MapRoute("AlbumsIndex", "Albums",
    new { controller = "Albums", action = "Index" });
  routes.MapRoute("AlbumsTag", "Albums/{tag}",
    new { controller = "Albums", action = "Tag", tag = "" });
  routes.MapRoute("Default", "{controller}/{action}/{id}",
    new { controller = "Home", action = "Index", id = "" );

以及

public ActionResult Index() { ... }
public ActionRestlt Tag(string tag) { ... }
问题回答

暂无回答




相关问题
热门标签