繁体   English   中英

asp.net 内核没有初始化控制器

[英]asp.net core none of the controllers are initialized

我有一个 ASP.NET 项目,一切都返回 404,这是我的启动代码

public class Startup
{
    public Startup(IConfiguration configuration)
    {
        Configuration = configuration;
    }

    public IConfiguration Configuration { get; }

    // This method gets called by the runtime. Use this method to add services to the container.
    public void ConfigureServices(IServiceCollection services)
    {
        services.AddControllersWithViews();
    }

    // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
    public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
    {
        if (env.IsDevelopment())
            app.UseDeveloperExceptionPage();
        else
            app.UseExceptionHandler("/Home/Error");

        app.UseStaticFiles();

        app.UseAuthentication();

        app.UseRouting();

        app.UseAuthorization();
        app.UseEndpoints(endpoints =>
        {
            endpoints.MapControllerRoute(
                name: "default",
                pattern: "{controller=Home}/{action=Index}/{id?}");

            endpoints.MapGet("/debug/routes", async ctx =>
            {
                await ctx.Response.WriteAsync(string.Join(", ", endpoints.DataSources.SelectMany(x => x.Endpoints)));
            });
        });

    }
}

这是一个示例 controller:

public class Home : Controller
{
    private readonly DatabaseContext _databaseContext;

    public Home(DatabaseContext databaseContext)
    {
        Console.WriteLine($"Initialized home controller"); // This doesn't get called at all.
        _databaseContext = databaseContext;
        _databaseContext.Database.EnsureCreated();

    }

    [HttpGet("/home")]
    public IActionResult Index()
    {
        ViewData["Products"] = _databaseContext.Products.ToList();
        return View();
    } 
    .....

and whenever I launch the server it I would go to /home and it would return 404, I also go to /debug/routes and it would show only the 2 endpoints inside the UseEndpoints function but never the controller classes I made

尝试在服务中注册您的数据库上下文,如下所示。 由于DatabaseContextHomeController的依赖无法解决,您可能会遇到错误。

// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
    // Add below line
    services.AddDbContext<DatabaseContext>(options => options.UseSqlServer(connectionString));
    services.AddControllersWithViews();
}

Startup class 的Configure(IApplicationBuilder app, IWebHostEnvironment env)方法中,您需要类似: app.MapControllers();

我认为您的控制器已通过调用services.AddControllersWithViews(); 但是没有中间件注册来调用你的控制器,这应该在Configure方法中完成。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM