私はこの問題を抱えています:「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?}");
}
}
}
解決策:_Startup.cs
_でAddMvc()
の代わりにAddMvcCore()
を使用すると動作します。
理由の詳細については、この問題を参照してください。
ほとんどのユーザーには変更はありません。AddMvc()とUseMvc(...)を引き続きスタートアップコードで使用する必要があります。
本当に勇敢な人には、最小限のMVCパイプラインから始めて、カスタマイズされたフレームワークを取得するための機能を追加できる設定エクスペリエンスがあります。
また、_Microsoft.AspNetCore.Mvc.ViewFeature
_への参照を_project.json
_に追加する必要があります。
https://www.nuget.org/packages/Microsoft.AspNetCore.Mvc.ViewFeatures/
_2.0
_を使用している場合は、ConfigureServices
でservices.AddMvcCore().AddRazorViewEngine();
を使用します
また、Authorize
属性を使用している場合は、.AddAuthorization()
を追加することを忘れないでください。追加しないと機能しません。
.NET Core 2.0の場合、ConfigureServicesで次を使用します。
services.AddNodeServices();
これは古い投稿であることは知っていますが、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();
});
}
}
次のコードを追加するだけで機能します。
public void ConfigureServices(IServiceCollection services)
{
services.AddMvcCore()
.AddViews();
}
これをstartup.csで使用します
services.AddSingleton<PartialViewResultExecutor>();
これは私の場合に機能します:
services.AddMvcCore()
.AddApiExplorer();
.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
}
}