Google Code Prettify

System.InvalidOperationException: 'Unable to find the required services. Please add all the required services by calling 'IServiceCollection.AddRazorPages' inside the call to 'ConfigureServices(...)' in the application startup code.'

這個錯誤訊息表示在您的 ASP.NET Core 應用程序中,缺少必要的服務配置。具體來說,您需要在 ConfigureServices 方法中添加 Razor Pages 的服務。

設定 AddRazorPages
確保在 Program.cs 中的 ConfigureServices 方法內添加 AddRazorPages。以下是詳細步驟和範例代碼:

Program.cs
csharp

var builder = WebApplication.CreateBuilder(args);

// Add services to the container.
builder.Services.AddControllersWithViews();
builder.Services.AddRazorPages();

var app = builder.Build();

// Configure the HTTP request pipeline.
if (!app.Environment.IsDevelopment())
{
    app.UseExceptionHandler("/Home/Error");
    app.UseHsts();
}

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

app.UseRouting();

app.UseAuthorization();

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

app.MapRazorPages();

app.Run();



確認所有必要的服務已添加
請確認您的 Program.cs 包含了所有必要的服務配置。以下是一個完整的 Program.cs 範例:

完整範例
csharp

var builder = WebApplication.CreateBuilder(args);

// Add services to the container.
builder.Services.AddControllersWithViews();
builder.Services.AddRazorPages();

var app = builder.Build();

// Configure the HTTP request pipeline.
if (!app.Environment.IsDevelopment())
{
    app.UseExceptionHandler("/Home/Error");
    app.UseHsts();
}

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

app.UseRouting();

app.UseAuthorization();

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

app.MapRazorPages();

app.Run();



確保 Razor Pages 的正確設置
確認您的 Razor Pages 文件結構和命名正確。您的 Razor Pages 應該位於 Pages 文件夾內,並且應具有 .cshtml 和對應的 .cshtml.cs 文件。

示例:Pages/MyPage.cshtml
html
@page
@model MyApp.Pages.MyPageModel
@{
    ViewData["Title"] = "My Page";
}

<h2>@ViewData["Title"]</h2>
<p>Welcome to my Razor Page!</p>


示例:Pages/MyPage.cshtml.cs
csharp

using Microsoft.AspNetCore.Mvc.RazorPages;

namespace MyApp.Pages
{
    public class MyPageModel : PageModel
    {
        public void OnGet()
        {
            // Page logic here
        }
    }
}



總結
為了解決 System.InvalidOperationException: 'Unable to find the required services' 錯誤,請確保您在 Program.cs 中正確添加了 AddRazorPages 和 MapRazorPages 方法。此外,確認您的 Razor Pages 文件結構和命名正確。通過上述步驟,您應該能夠成功配置和使用 Razor Pages。