.Net Core RC2 MVC 参数在控制器中为空
.Net Core RC2 MVC parameter is null in controller
在 VS Code 中使用 .NET Core RC2 我有以下 HTML
<form asp-controller="Home" asp-action="Connexion" method="post">
<div class="col-md-4 input-group">
<input type="text" id="password" class="form-control" placeholder="Mot de passe">
<span class="input-group-btn">
<button class="btn btn-secondary" type="submit">Envoyer</button>
</span>
</div>
</form>
还有控制器
[HttpPost("/Connexion")]
public IActionResult Connexion([FromBody] string password)
{
return View();
}
提交表单时,在方法中遇到了我的断点,但密码参数为空。我做错了什么?
表单字段 名称 应与参数名称匹配。所以添加一个name属性。
<input type="text" name="password" class="form-control" placeholder="Mot de passe">
您也可以删除 [FromBody] 装饰。
[HttpPost("/Connexion")]
public IActionResult Connexion(string password)
{
return View();
}
在 VS Code 中使用 .NET Core RC2 我有以下 HTML
<form asp-controller="Home" asp-action="Connexion" method="post">
<div class="col-md-4 input-group">
<input type="text" id="password" class="form-control" placeholder="Mot de passe">
<span class="input-group-btn">
<button class="btn btn-secondary" type="submit">Envoyer</button>
</span>
</div>
</form>
还有控制器
[HttpPost("/Connexion")]
public IActionResult Connexion([FromBody] string password)
{
return View();
}
提交表单时,在方法中遇到了我的断点,但密码参数为空。我做错了什么?
表单字段 名称 应与参数名称匹配。所以添加一个name属性。
<input type="text" name="password" class="form-control" placeholder="Mot de passe">
您也可以删除 [FromBody] 装饰。
[HttpPost("/Connexion")]
public IActionResult Connexion(string password)
{
return View();
}