执行发布时没有数据

本文关键字:数据 布时没 执行 | 更新日期: 2023-09-27 18:25:12

AccountController.cs

namespace IndividueleOpdracht.Controllers
{
    public class AccountController : Controller
    {
        public ActionResult Login()
        {
            return View(new Account());
        }
        [HttpPost]
        public ActionResult Login(Account model)
        {
            if (!ModelState.IsValid) return View();
            if (model.Login())
            {
                return RedirectToAction("Index", "News");
            }
            return View();
        }
    }
}

账户.cs

namespace IndividueleOpdracht.Models
{
    public class Account
    {
        [Required]
        public string Email;
        [Required]
        public string Password;
        public bool Login()
        {
            if (Email == "test" && Password == "test")
            {
            return true;
            }
            return false;
        }
    }
}

登录cshtml

@model IndividueleOpdracht.Models.Account
@using (Html.BeginForm("Login", "Account", FormMethod.Post, new { @class = "form-signin" }))
{
    <h2 class="form-signin-heading">Login</h2>
    <label for="inputEmail" class="sr-only">Email address</label>
    @Html.TextBoxFor(model => model.Email, new { @type = "email", @id = "inputEmail", @class = "form-control", @placeholder = "Email adres" })
    <label for="inputPassword" class="sr-only">Wachtwoord</label>
    @Html.PasswordFor(model => model.Password, new { @id = "inputPassword", @class = "form-control", @placeholder = "Wachtwoord" })
    <div class="checkbox">
        <label>
            <input type="checkbox" value="remember-me"> Onthoud mij
        </label>
    </div>
    <button class="btn btn-lg btn-primary btn-block" type="submit">Login</button>
}

当我做一篇文章时,它说模型参数是空的。电子邮件为空,密码也是。

ModelState.IsValid为true。

有人能告诉我我做错了什么吗。

感谢

执行发布时没有数据

将视图模型类更改为设置/get并使其成为公共属性。

public class Account
{
    [Required]
    public string Email {set;get;};
    [Required]
    public string Password {set;get;};
}

如果不将它们保留为属性(使用set),MVC模型绑定器在读取发布的表单数据后就无法将值设置为这些属性。

此外,要查看验证摘要,可以使用Html.ValidationSummary()方法。因此,当模型验证失败时,您将看到一个属性验证错误列表。

@using (Html.BeginForm())
{
    @Html.ValidationSummary()
    @Html.TextBoxFor(s=>s.Email)
    <input type="submit" />
}