ASP.NET MVC アプリケーションをデフォルトで製品コントローラー インデックス アクションにリダイレクトする必要があります。だから私はRouteConfigをに変更しました
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{id}",
defaults: new { id = RouteParameter.Optional }
);
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Product", action = "Index", id = UrlParameter.Optional });
}
しかし、それでもエラーが発生します
The view 'Index' or its master was not found or no view engine supports the searched locations.
The following locations were searched:
~/Views/Home/Index.aspx
~/Views/Home/Index.ascx
~/Views/Shared/Index.aspx
~/Views/Shared/Index.ascx
~/Views/Home/Index.cshtml
~/Views/Home/Index.vbhtml
~/Views/Shared/Index.cshtml
~/Views/Shared/Index.vbhtml
アプリケーションをデバッグし、3 番目のルートのデフォルト セクションを確認しました。しかし、それはまだ言います
{[controller, Home]}
誰でも理由を教えてもらえますか?