Asp.net 코어 라우팅 경로 처리기 Giriş.
외르네긴:
https://localhost:5001/mustafa?saysomething=BenimAdimMustafa
말하다:
BenimAdimMustafa
yazmasını istiyoruz ama bu isteğin controller'dan geçmesini de istemiyoruz. 당신은 무엇입니까?
1.) Model-view-controller projesi oluşturun.
2.) SaySomething은 다음과 같은 클래스를 제공합니다.
public class SaySomething
{
public RequestDelegate Handler()
{
return async c => await Task.Run(async () =>
{
string message = c.Request.Query["saysomething"].ToString();
await c.Response.WriteAsync(message);
});
}
}
3.) 끝점'lerimizi aşağıdaki gibi değiştirelim:
app.UseEndpoints(endpoints =>
{
endpoints.Map("mustafa", new SaySomething().Handler());
endpoints.MapControllerRoute(
name: "default",
pattern: "{controller=Home}/{action=Index}/{id?}");
});
Şimdi uygulamayı çalıştıralam ve aşağıdaki linke istek atalım :
https://localhost:5001/mustafa?saysomething=BenimAdimMustafa
Gördüğünüz üzere :
소누크 :
Bir dahaki yazımda görüşmek dileğiyle.
이 딜레클레림 일레.
무스타파 사메드 예인.
Reference
이 문제에 관하여(Asp.net 코어 라우팅 경로 처리기 Giriş.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/mustafasamedyeyin/aspnet-core-routing-route-handler-giris-143c텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)