繁体   English   中英

错误“未为此对象定义无参数的构造函数。” ViewModel中的SelectList错误

[英]Error “No parameterless constructor defined for this object.” with SelectList from ViewModel

在我的视图模型中,我创建了两个SelectList属性,这些城市的名称来自外部数据库。

视图模型

namespace Treinreizen.Models.ViewModels
{
    public class ReizenViewModel
    {
        public SelectList VanStad { get; set; }

        public SelectList NaarStad { get; set; }
    }
}

在我的控制器中,我使用一种GET方法“ Registratie”,用户可以在其中选择城市,并使用一种POST方法来发布该城市。 问题是我得到了错误

“没有为此对象定义无参数构造函数。”

当我尝试发布表格时。 在堆栈跟踪中说:

“ [[MissingMethodException:没有为此对象定义无参数构造函数。]”和“ [[MissingMethodException:没有为此对象定义无参数构造函数。对象类型'System.Web.Mvc.SelectList'。]”

调节器

        // GET: Hotels/Registratie
        public ActionResult Registratie()
        {
            stedenServices = new StedenServices();
            ReizenViewModel registratieviewmodel = new ReizenViewModel();
            registratieviewmodel.VanStad = new SelectList(stedenServices.All(), "StadID", "Stad");
            registratieviewmodel.NaarStad = new SelectList(stedenServices.All(), "StadID", "Stad");
            return View(registratieviewmodel);
        }

        // POST: Hotels/Registratie
        [HttpPost]
        public ActionResult Registratie(ReizenViewModel registratie)
        {
            if (ModelState.IsValid)
            {
                return RedirectToAction("Index");
            }
            return View(registratie);
        }

视图

    <div class="form-group">
        @Html.LabelFor(model => model.VanStad, htmlAttributes: new { @class = "control-label col-md-2" })
        <div class="col-md-10">
            @Html.DropDownListFor(m => m.VanStad, Model.VanStad, "--Selecteer Stad--")
            @Html.ValidationMessageFor(model => model.VanStad, "", new { @class = "text-danger" })
        </div>
    </div>

    <div class="form-group">
        @Html.LabelFor(model => model.NaarStad, htmlAttributes: new { @class = "control-label col-md-2" })
        <div class="col-md-10">
            @Html.DropDownListFor(m => m.NaarStad, Model.NaarStad, "--Selecteer Stad--")
            @Html.ValidationMessageFor(model => model.NaarStad, "", new { @class = "text-danger" })
        </div>
    </div>

只需向ReizenViewModel添加一个无参数的构造函数即可:

public ReizenViewModel(){}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM