Does model binding work via query string in asp.net mvc

流过昼夜 提交于 2019-11-27 03:12:35

问题


Does model binding work via query string as well ?

If I have a get request like :

GET /Country/CheckName?Country.Name=abc&Country.Id=0 HTTP/1.1

Would the following method in CountryController have its oCountry argument containing Id and Name properties with values from the query string ?

public ViewResult CheckCountryName(Country oCountry)
{
     //some code
     return View(oCountry);
}

For some reason I am getting Id as 0 and Name as null in oCountry object. What is missing ?


回答1:


Yes, the model binding supports binding from the query string. However the same model binding rules apply here also: the property names/expressions should match in your request and in your model.

So if you have a Name property then you need the have a Name key in the query string. If you write Country.Name the model binding first look for a property called Country and then a Name property on that country object.

So you don't need the Country prefix for you property names, so your request should look like this:

/Country/CheckName?Name=abc&Id=1 HTTP/1.1

Or if you cannot change the request you can specify the prefix for your action parameter with the BindAttribute:

public ViewResult CheckCountryName([Bind(Prefix="Country")]Country oCountry)
{
     //some code
     return View(oCountry);
}


来源:https://stackoverflow.com/questions/17329342/does-model-binding-work-via-query-string-in-asp-net-mvc

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!