MVC 更改登陆页面不起作用:Options.Conventions.AddPageRoute(

Posted

技术标签:

【中文标题】MVC 更改登陆页面不起作用:Options.Conventions.AddPageRoute(【英文标题】:MVC Change Landing Page is not working: Options.Conventions.AddPageRoute( 【发布时间】:2019-05-16 06:37:44 【问题描述】:

我尝试使用此命令更改我的网页 Mvc 应用程序的登录页面。但是它仍然将我重定向到常规索引,而不是产品/索引。我该如何解决这个问题?

    public void ConfigureServices(IServiceCollection services)
    

        var connection = @"Server=localhost;Database=Electronics;Trusted_Connection=True;ConnectRetryCount=0";
        services.AddDbContext<ElectronicsContext>(options => options.UseSqlServer(connection));
        services.AddTransient<IProductRepository<Product>, ProductRepository>();
        services.AddTransient<IProductCategoryRepository<ProductCategory>, ProductCategoryRepository>();
        services.AddTransient<ICustomerRepository<Customer>, CustomerRepository>();
        services.AddTransient<ISupplyRepository<Supply>, SupplyRepository>();
        services.AddScoped<ShoppingCartRepository>(sp => ShoppingCartSession.GetCart(sp));
        services.AddSingleton<IHttpContextAccessor, HttpContextAccessor>();

        services.AddAutoMapper();

        services.AddMvc().AddRazorPagesOptions(options =>
        
            options.Conventions.AddPageRoute("/Products/Index", "");
        ).SetCompatibilityVersion(CompatibilityVersion.Version_2_1);

        services.AddMemoryCache();
        services.AddSession();

        services.AddSingleton<IMemoryContainer,MemoryContainer>();
        services.AddSingleton(new LoggerFactory().AddConsole().AddDebug());
        services.AddLogging();
        _logger.LogInformation("configure services log");

    

【问题讨论】:

所以你要更改默认根文件夹? 【参考方案1】:

如果您有一个带有底层 Index.cshtml.cs 页面控制器的 Index.cshtml 文件,请向其中添加以下方法:

public class IndexModel : PageModel


    public IActionResult OnGet()
    
        return RedirectToAction("Index", "Products");
    

我刚刚花了几个小时试图弄清楚这一点......

【讨论】:

以上是关于MVC 更改登陆页面不起作用:Options.Conventions.AddPageRoute(的主要内容,如果未能解决你的问题,请参考以下文章

MVC Web API - CORS 策略不起作用

javascript的“更改”函数在asp.net mvc中不起作用

Grid中的kendoui ClientTemplate在asp.net mvc 4中不起作用

无法在 mvc5 web.config 更改中上传更大的文件也不起作用[重复]

Spring MVC Scala App 仅返回 index.html 页面其余路由不起作用

数据表在 mvc 的视图页面中的我的表上不起作用