gpt4 book ai didi

c# - ViewContext.RouteData.Values ["Controller"] 始终为 Null - Asp.Net Core 2.1

转载 作者:行者123 更新时间:2023-11-30 22:58:00 28 4
gpt4 key购买 nike

我从使用 Asp.Net Core 2.1 的标准 ASP.NET Core Web 应用程序模板开始。

然后我在共享文件夹中添加了一个左侧导航面板,如下所示:ActiveRouteTagHelper

在此导航面板中,我想突出显示事件链接,我使用了以下解决方案:Ben Cull's ActiveRouteTagHelper for MVC .

然后我遇到了以下问题:

当我点击调试并启动应用程序时,我希望在 ViewContext.RouteData.Values["Controller"] 中看到 Controller 值。

对于第一次和每隔一次点击,即使可以看到 Url显示正确的操作和 Controller 名称

    private bool ShouldBeActive()
{
try
{
var currentController = ViewContext.RouteData.Values["Controller"].ToString();
var currentAction = ViewContext.RouteData.Values["Action"].ToString();


}
catch (Exception ex)
{
return false;
}
}

为了清楚起见,我删除了该方法的其余部分。

我的启动类:

        public void ConfigureServices(IServiceCollection services)
{
services.Configure<AppSettings>(_configuration);
services.Configure<AppSettings>(_configuration.GetSection("PortalSettings"));
var settings = _configuration.Get<AppSettings>();

services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1);
services.AddMvc();
services.AddMvc().AddControllersAsServices();
services.TryAddSingleton<IHttpContextAccessor, HttpContextAccessor>();
}

public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
if (env.IsDevelopment())
{
// If this is the case then enable more detailed error output
app.UseDeveloperExceptionPage();

// Display a more specific error page when an exception occurs connecting to the database
app.UseDatabaseErrorPage();
}
else
{
// If this is not the case then forward the error to our generic view
app.UseExceptionHandler("/Shared/Error");
app.UseHsts();
}

app.UseHttpsRedirection();
app.UseStaticFiles();

app.UseMvc(routes =>
{
routes.MapRoute("default", "{controller}/{action}/{id?}");
});
app.UseAuthentication();
}

我的问题是,如何让这两行返回一个值?因为无论我尝试过什么,都证明是成功的。结果总是空的!!

var currentController = ViewContext.RouteData.Values["Controller"].ToString();
var currentAction = ViewContext.RouteData.Values["Action"].ToString();

Debug view

我尝试了各种路由映射选项,但都无济于事。有什么想法吗?

最佳答案

您混淆了 Razor Pages 和 MVC。 ASP.NET Core 的默认 Web 应用程序模板为您提供了一个 Razor Pages 应用程序 ( https://www.learnrazorpages.com ),根据您发布的图像,这就是您所拥有的。

Razor Pages 中的路由是根据页面文件夹中内容的文件路径定义的,而不是 Controller 和操作方法。如果您需要 MVC 应用程序,请选择 ASP.NET Core Web Application 作为项目类型,然后选择 Web Application (Model-View-Controller)

关于c# - ViewContext.RouteData.Values ["Controller"] 始终为 Null - Asp.Net Core 2.1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53263416/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com