I'm new to web-api. I want to receive a HTTP POST data using web-api. The content-type is application/x-www-form-urlencoded
, and the request body is like:
data={"mac":"0004ED123456","model":"SG6200NXL"}
(JSON format).
My controller is like this:
public void Post([FromBody]string formData)
{
data.Add(formData);
}
But formData is always null. Only when I change the request body to:
={"mac":"0004ED123456","model":"SG6200NXL"}
I can find {"mac":"0004ED123456","model":"SG6200NXL"}
was saved in my formData
string.
So my question is how should I receive the data with format:
data={"mac":"0004ED123456","model":"SG6200NXL"}
?
And is there a easy way that I can desalinize the JSON into C#?
Thanks for help!
UPDATE:
I tried to use model, but it still not work for me.
My model is:
public class Device
{
public string mac { get; set; }
public string model { get; set; }
}
and my HTTP POST request is:
header:
User-Agent: Fiddler
Content-type: application/x-www-form-urlencoded
Host: localhost:52154
Content-Length: 46
body:
data={"mac":"0004ED123456","model":"SG6200NX"}
I have to use Content-type: application/x-www-form-urlencoded
as far as I know because the HTTP POST is sent by a router. My job is to receive the data.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…