用于在POST上创建单选按钮的foreach上的Null引用错误

时间:2012-09-22 18:00:03

标签: c# asp.net-mvc-3

我正在教自己asp .net mvc3。我有一个“添加属性”表单,允许用户将属性详细信息上传到网站。我一直在努力解决这个错误。

为简化起见,我们可以考虑在数据库中有两个表。

CustomerTypes:数据库有1个所有者,2个经纪人,3个商业等 属性:这是由表单填充的表。

我使用CustomerTypes(以及其他此类表格)来创建单选按钮。用户填写表单并选择“客户类型”选项。但是,我在提交时得到“未设置为对象实例的对象引用”错误。这是因为“null”是 为Model.CustomerTypes设置。但是,Model.CustomerTypes仅用于创建单选按钮。我不确定是什么问题。代码如下:

查看:

@model Website.ViewModels.AddPropertyViewModel

<fieldset>
    <legend>Property</legend>

    <div class="editor-label">
        @Html.LabelFor(model => model.Property.CustomerType)
        @foreach (var item in Model.CustomerTypes)
        {
            @Html.RadioButtonFor(model => model.Property.CustomerType, Convert.ToInt32(item.Value)) @item.Text
        }
    </div>

    ...

AddPropertyViewModel:

namespace Website.ViewModels
{
    public class AddPropertyViewModel
    {
        public Property Property { get; set; }
        ...

        public IEnumerable<SelectListItem> CustomerTypes { get; set; }
        ...
    }

控制器:

public ActionResult AddProperty()
    {
        AddPropertyViewModel viewModel = new AddPropertyViewModel
        {
                ...
            CustomerTypes = websiterepository.GetCustomerTypeSelectList(),
                ...
        };
        return View(viewModel);

GetCustomerTypeSelectList函数是:

public IEnumerable<SelectListItem> GetCustomerTypeSelectList()
{
    var customerTypes = from p in db.CustomerType
                            orderby p.CustomerTypeDescription
                            select new SelectListItem
                            {
                                Text = p.CustomerTypeDescription,
                                Value = SqlFunctions.StringConvert((double)p.CustomerTypeId)
                            };
    return customerTypes;
}

POST中的值根据选择

正确设置为Property_CustomerType

---添加了更多信息--- 我将表格开始为:

@using (Html.BeginForm("AddProperty", "Property", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
...
}

控制器是:

[HttpPost]
public ActionResult AddProperty(AddPropertyViewModel viewModel)
{
    if (ModelState.IsValid)
    {
        // 
        if (viewModel.File1.ContentLength > 0)
        {
            var fileName = Path.GetFileName(viewModel.File1.FileName);
            var path = Path.Combine(Server.MapPath("~/App_Data"), fileName);
            viewModel.File1.SaveAs(path);
        }

        var property = viewModel.Property;
        websiterepository.Add(property);
        return RedirectToAction("Index", "Home");
    }

    return View(viewModel);
}

以下是错误的屏幕截图: enter image description here

我已经尝试提交评论这些单选按钮的表单,但它确实有效。

1 个答案:

答案 0 :(得分:1)

问题是,在发布到服务器后呈现视图时,不会填充CustomerTypes

如果我们查看正在执行的操作流程,我们会看到

  1. 在渲染之前填充CustomerTypes集合 初始页面
  2. 您将数据发布回服务器但不是 保留CustomerTypes集合(因为没有必要)
  3. 您再次渲染视图,但这次没有填充 CustomerTypes
  4. KABOOM!
  5. 在第二次返回视图之前填充CustomerTypes属性应解决您的问题:

    [HttpPost]
    public ActionResult AddProperty(AddPropertyViewModel viewModel)
    {
     [...]
    
     viewModel.CustomerTypes = websiterepository.GetCustomerTypeSelectList();
    
     return View(viewModel);
    }