模型绑定是否也可以通过查询字符串工作?
如果我有类似的获取请求:
GET /Country/CheckName?Country.Name=abc&Country.Id=0 HTTP/1.1
CountryController 中的以下方法是否具有其 oCountry 参数,其中包含来自查询字符串的值的 Id 和 Name 属性?
public ViewResult CheckCountryName(Country oCountry)
{
//some code
return View(oCountry);
}
出于某种原因,我在 oCountry 对象中将 Id 设为 0,将 Name 设为 null。什么不见了 ?