4

我有一个 ViewModel 如下:

public class CheckoutViewModel
{
    public string ProductNumber { get; set; }
    public string Name { get; set; }
    public int Price { get; set; }
    public Input UserInput;

    public class Input
    {
        public string Email { get; set; }
        public string Phone { get; set; }
    }
}

像这样的动作:

[HttpPost]
public ActionResult Index(CheckoutViewModel model)
{
    // ...
    return View();
}

我的模型绑定如下:

@model GameUp.WebUI.ViewModels.CheckoutViewModel

@using (Html.BeginForm("Index", "Checkout", FormMethod.Post))
{
    @Html.AntiForgeryToken()

    <!-- some HTML -->

    @Html.LabelFor(m => m.UserInput.Email)
    @Html.TextBoxFor(m => m.UserInput.Email)

    @Html.LabelFor(model => model.UserInput.Phone)
    @Html.TextBoxFor(model => model.UserInput.Phone)

    <button>Submit</button>
}

当我提交表单时,UserInput 为空。我知道 ASP.NET MVC 能够绑定嵌套类型,但在这段代码中不能。我也可以通过以下方式获取电子邮件和电话值:

var email = Request.Form["UserInput.Email"];
var phone = Request.Form["UserInput.Phone"];

也许我做错了什么!这是一个简单的模型绑定,您可以在网络上随处找到。

4

1 回答 1

10

你忘了在你的 中放一个二传手UserInput,我不认为二传手是自动的。无论如何,您只需在您的控制器方法中放置一个 getter/setter 即可使其工作,UserInput而无需在控制器方法中执行额外操作:

public Input UserInput { get; set; }

您的完整模型:

public class CheckoutViewModel
{
    public string ProductNumber { get; set; }
    public string Name { get; set; }
    public int Price { get; set; }
    public Input UserInput { get; set; }

    public class Input
    {
        public string Email { get; set; }
        public string Phone { get; set; }
    }
}
于 2013-04-03T05:39:29.420 回答