ASP.NET/ASP.NET Core

[ASP.Net Core] FromForm, FromBody, FromQuery

http://portfolio.wonpaper.net 2023. 6. 28. 11:11

데이터 모델바이딩 관련해서

FromForm, FromBody, FromQuery 넘들이 있는데, 

 

1. FromForm [POST 방식]

Form태그로 둘러처진 name 과 value 값의  데이터들을 바인딩할 때 쓰인다.

 

2. FromBody [POST 방식]

XML, Json, 일반 텍스트 형태의 데이터들을 바인딩할 때 쓰인다. 특히 API 설정시 유용하다.

 

3. FromQuery [GET 방식]

URL의 QueryString 변수값을 받을 때 

 

이에 대한 간단한 예제와 설명은 아래 포스팅 글을 참고하길 바란다.

 

https://mbarkt3sto.hashnode.dev/aspnet-core-fromform-frombody-and-fromquery

 

ASP.Net Core: FromForm, FromBody, and FromQuery

When working with APIs, it's common to receive data from different sources such as form submissions, request bodies, or query parameters. In ASP.Net Core, you can use the FromForm, FromBody, and FromQuery attributes to bind incoming data to action me...

mbarkt3sto.hashnode.dev