定义Infos类如下:
public class Infos
{
public string[] web_Titles;
}
action代码如下:
[HttpPost("Reg2")]
public ActionResult Register2([FromBody] Infos infos)
{
return Ok(); //在此处打断点
}
用Postman提交json后,断点命中,检查参数infos,显示 infos.web_Titles为null。如下图:
{
public string[] web_Titles ==> public string[] web_Title{get;set;}
}
果然是这坑,感谢!