2021-10-15 11:09

讓 Net core 3.1 的 PageModel 可以用 POST 的參數決定 handler

Razor Page 的 handler 預設只能從 URL 的 QueryString 參數 ?handler=XXXX 決定要去的 handler,這有點不方便,因為我會用 <button type="submit" name="handler" value="Delete"> 的方式去傳送 handler,所以需要用 POST 也能決定 handler。

為了做到這點可以在 Startup.cs 進行 middleware 配置:

  1. public void Configure(IApplicationBuilder app, IWebHostEnvironment env) 
  2. { 
  3.    //... 
  4.  
  5.    /* 使用 FormData 給路由 handler */ 
  6.    app.Use((context, next) => 
  7.    { 
  8.        HttpRequest req = context.Request; 
  9.  
  10.        /* 判斷是否為 POST,且具有 handler 參數,然後覆蓋 Route 的值 */ 
  11.        if (req.HasFormContentType && req.Form.ContainsKey("handler")) 
  12.        { req.RouteValues["handler"] = req.Form["handler"]; } 
  13.  
  14.        return next(); 
  15.    }); 
  16.  
  17.    //... 
  18. } 

0 回應: