我试图在 Web API 中检索发布参数,但我每次都得到空值。
我的html
<form method="POST" action="http://localhost:16192/update" name="myform">
<input name="title" type="text"/>
<input name="isbn" type="text"/>
<input name="author" type="text"/>
<input type="submit" value="Submit"/>
</form>
还有我的 WebAPI
[HttpPost]
[Route("UPDATE/")]
public String updateRecord([FromBody]String title,String isbn="", String author="")
{
return "Updated";
}
updateRecord
正在调用该方法,但我总是得到空值。任何帮助将不胜感激。