web-dev-qa-db-ja.com

タイプ「Microsoft.AspNetCore.Mvc.ViewFeatures.ITempDataDictionaryFactory」のサービスが登録されていません

私はこの問題を抱えています:「Microsoft.AspNetCore.Mvc.ViewFeatures.ITempDataDictionaryFactory」タイプのサービスは登録されていません。 asp.netコア1.0では、アクションがビュー私はその例外があります。

何回も検索しましたが、これに対する解決策は見つかりませんでした。誰かが私に何が起こっているのか、どうすればそれを修正できるのかを助けてくれるなら、感謝します。

以下の私のコード:

私のproject.jsonファイル

{
  "dependencies": {
    "Microsoft.NETCore.App": {
      "version": "1.0.0",
      "type": "platform"

    },
    "Microsoft.AspNetCore.Diagnostics": "1.0.0",
    "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
    "Microsoft.AspNetCore.Server.Kestrel": "1.0.0",
    "Microsoft.Extensions.Logging.Console": "1.0.0",
    "Microsoft.AspNetCore.Mvc": "1.0.0",
    "Microsoft.AspNetCore.StaticFiles": "1.0.0-rc2-final",
    "EntityFramework.MicrosoftSqlServer": "7.0.0-rc1-final",
    "EntityFramework.Commands": "7.0.0-rc1-final"
  },

  "tools": {
    "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview2-final"
  },

  "frameworks": {
    "netcoreapp1.0": {
      "imports": [
        "dnxcore50",
        "portable-net45+win8"
      ]
    }
  },

  "buildOptions": {
    "emitEntryPoint": true,
    "preserveCompilationContext": true
  },

  "runtimeOptions": {
    "configProperties": {
      "System.GC.Server": true
    }
  },

  "publishOptions": {
    "include": [
      "wwwroot",
      "web.config"
    ]
  },

  "scripts": {
    "postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
  }
}

マイStartup.csファイル

using System;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Routing;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using OdeToFood.Services;

namespace OdeToFood
{
    public class Startup
    {
        public IConfiguration configuration { get; set; }
        // This method gets called by the runtime. Use this method to add services to the container.
        // For more information on how to configure your application, visit http://go.Microsoft.com/fwlink/?LinkID=398940
        public void ConfigureServices(IServiceCollection services)
        {

            services.AddScoped<IRestaurantData, InMemoryRestaurantData>();
            services.AddMvcCore();
            services.AddSingleton(provider => configuration);
        }

        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
        {

            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }
            //app.UseRuntimeInfoPage();

            app.UseFileServer();

            app.UseMvc(ConfigureRoutes);

            app.Run(async (context) =>
            {
                await context.Response.WriteAsync("Hello World!");
            });
        }

        private void ConfigureRoutes(IRouteBuilder routeBuilder)
        {
            routeBuilder.MapRoute("Default", "{controller=Home}/{action=Index}/{id?}");
        }
    }
}
28

解決策:_Startup.cs_でAddMvc()の代わりにAddMvcCore()を使用すると動作します。

理由の詳細については、この問題を参照してください。

ほとんどのユーザーには変更はありません。AddMvc()とUseMvc(...)を引き続きスタートアップコードで使用する必要があります。

本当に勇敢な人には、最小限のMVCパイプラインから始めて、カスタマイズされたフレームワークを取得するための機能を追加できる設定エクスペリエンスがあります。

https://github.com/aspnet/Mvc/issues/2872

また、_Microsoft.AspNetCore.Mvc.ViewFeature_への参照を_project.json_に追加する必要があります。

https://www.nuget.org/packages/Microsoft.AspNetCore.Mvc.ViewFeatures/

44
Jonas Stensved

_2.0_を使用している場合は、ConfigureServicesservices.AddMvcCore().AddRazorViewEngine();を使用します

また、Authorize属性を使用している場合は、.AddAuthorization()を追加することを忘れないでください。追加しないと機能しません。

23
CoOl

.NET Core 2.0の場合、ConfigureServicesで次を使用します。

services.AddNodeServices();
1
chaosifier

これは古い投稿であることは知っていますが、MVCプロジェクトを.NET Core 3.0に移行した後にこれに遭遇したときのGoogleの最高の結果でした。私のStartup.csこれは私のためにそれを修正したように見える:

public class Startup
{
    public void ConfigureServices(IServiceCollection services)
    {
        services.AddControllersWithViews();
    }

    public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
    {
        if (env.IsDevelopment())
        {
            app.UseDeveloperExceptionPage();
        }

        app.UseRouting();

        app.UseEndpoints(endpoints =>
        {
            endpoints.MapControllers();
        });
    }
}
0
Brandon Johnson

次のコードを追加するだけで機能します。

   public void ConfigureServices(IServiceCollection services)
        {
            services.AddMvcCore()
                    .AddViews();

        }
0
Sudhir Jain

これをstartup.csで使用します

services.AddSingleton<PartialViewResultExecutor>();
0
Tufy Duck

これは私の場合に機能します:

services.AddMvcCore()
.AddApiExplorer();
0
Saurin Vala

.NetCore 1.X-> 2.0アップグレード中にこの問題が発生した場合は、両方のProgram.csおよびStartup.cs

public class Program
{
    public static void Main(string[] args)
    {
        BuildWebHost(args).Run();
    }

    public static IWebHost BuildWebHost(string[] args) =>
        WebHost.CreateDefaultBuilder(args)
            .UseStartup<Startup>()
            .Build();
}

public class Startup
{
// The appsettings.json settings that get passed in as Configuration depends on 
// project properties->Debug-->Enviroment Variables-->ASPNETCORE_ENVIRONMENT
    public Startup(IConfiguration configuration)
    {
        Configuration = configuration;
    }

    public IConfiguration Configuration { get; }

    public void ConfigureServices(IServiceCollection services)
    {
        services.AddDbContext<ApplicationDbContext>(options =>
            options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection")));

        services.AddIdentity<ApplicationUser, IdentityRole>()
            .AddEntityFrameworkStores<ApplicationDbContext>()
            .AddDefaultTokenProviders();

        services.AddTransient<IEmailSender, EmailSender>();

        services.AddMvc();
    }

    public void Configure(IApplicationBuilder app, IHostingEnvironment env)
    {
    // no change to this method leave yours how it is
    }
}
0
ono2012