リスト コントローラーを持つ Asp.Net Mvc Web サイトがあります。ルートは次のようになります。
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = UrlParameter.Optional },
new string[] { "MySite.Web.Controllers" }
);
かなり標準的。これで、リスト コントローラーに多数のコントローラー アクションができました。/listing/84 に移動して Index アクションに移動するか、/listing/create、/listing/edit、/listing/favorite、または /listing/others に移動して対応するアクション。私のルートのほとんどでは、これはすでに当てはまります。これは私のコントローラコードです:
public ActionResult Index(long? id)
{
// my code that never gets hit
}
何か不足していますか?