gpt4 book ai didi

c# - 没有为此对象定义无参数构造函数 - 无法解决

转载 作者:太空狗 更新时间:2023-10-30 00:33:32 29 4
gpt4 key购买 nike

我是 C# 和 MVC 的新手,所以请原谅我的天真/愚蠢。我已经看到多个帖子处理我遇到的错误,并且我已经尝试了所有解决方案,但它们似乎不适用于我的情况。请指导我以正确的方式解决这个问题。

背景:我有 2 个模型 tblPrograms 和 tblReports。我正在尝试构建一个简单的表单,用户可以在其中创建一个新的 tblReport。创建新 tblReport 的部分过程是从列表中选择一个 tblProgram。

代码概览:

Controller :

    // GET: /Reports/

public ViewResult New()
{

ProgramListModel progList = new ProgramListModel();
tblReports2 report = new tblReports2();

ExistingReportViewModel ervm = new ExistingReportViewModel(report,progList);

return View(ervm);
}

[HttpPost]
public ActionResult GenerateSQL(ExistingReportViewModel evrm)
{
evrm.Report.ProgramName = evrm.progList.selectedProgram;
return View(evrm);
}

查看模型:

 public class ExistingReportViewModel
{
public tblReports2 Report { get; set; }
public ProgramListModel progList { get; set; }

//public ExistingReportViewModel() { }
public ExistingReportViewModel(tblReports2 report, ProgramListModel progList)
{
this.Report = report;
this.progList = progList;
}
}

模型:

public class tblReports2
{

[Key]
public string ProgramName { get; set; }
public string ReportDesc { get; set; }
....
}
public class ProgramListModel
{
public SelectList progList;
public string selectedProgram;

public ProgramListModel() {
ReportHelper helper = new ReportHelper();
this.progList = helper.getProgramList();
}

}

辅助方法:

public SelectList getProgramList()
{
var programs = from p in this.DB.tblProgramsSet
select p;
programs = programs.Where(s => s.ProgramType.Equals("RPT"));
SelectList list = new SelectList(programs, "ProgramName", "ProgramDescription");
return list;

}

查看:

@model ReportsSetup.Models.ExistingReportViewModel

@{
ViewBag.Title = "New";
}

New
@using (Html.BeginForm("GenerateSQL", "Reports"))
{
@Html.ValidationSummary(true)
<fieldset>
<legend>ExistingReportViewModel</legend>

@Html.DropDownListFor(model=>model.progList.selectedProgram, Model.progList.progList)
<div class="editor-label">
@Html.LabelFor(model => model.Report.ReportDesc)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Report.ReportDesc)
@Html.ValidationMessageFor(model => model.Report.ReportDesc)
</div>

<div class="editor-label">
@Html.LabelFor(model => model.Report.Formerly)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Report.Formerly)
@Html.ValidationMessageFor(model => model.Report.Formerly)
</div>

<div class="editor-label">
@Html.LabelFor(model => model.Report.ExtendedDesc)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Report.ExtendedDesc)
@Html.ValidationMessageFor(model => model.Report.ExtendedDesc)
</div>

<div class="editor-label">
@Html.LabelFor(model => model.Report.ReportCode)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Report.ReportCode)
@Html.ValidationMessageFor(model => model.Report.ReportCode)
</div>

...

<input type="submit" value="Create" />

</fieldset>
}

<div>
@Html.ActionLink("Back to List", "Index")
</div>

错误:

![Exception Details: System.MissingMethodException: No parameterless constructor defined for this object.][1]

http://i.stack.imgur.com/GHJpG.jpg

尝试的解决方案:

  1. 重构代码以使用 IEnumerable 而不是ProgramListModel 中的 SelectList 并转换为View中的IEnumerable使用类似的函数示例如下:

    public static IEnumerable<SelectListItem> ToSelectListItems(
    this IEnumerable<Album> albums, int selectedId)
    {
    return
    albums.OrderBy(album => album.Name)
    .Select(album =>
    new SelectListItem
    {
    Selected = (album.ID == selectedId),
    Text = album.Name,
    Value = album.ID.ToString()
    });
    }
  2. 重构代码以使用 IEnumerable 而不是 ProgramListModel 中的 SelectList

提前致谢!!

最佳答案

不,你不能那样做:

public ActionResult GenerateSQL(ExistingReportViewModel evrm)

如果您的 ExistingReportViewModel 没有无参数构造函数。如果没有默认构造函数,默认模型绑定(bind)器不知道如何实例化此类。

所以你有两种可能性:

  1. 为此类定义一个无参数构造函数:

    public class ExistingReportViewModel
    {
    public ExistingReportViewModel()
    { }

    ... some other stuff of course
    }
  2. 编写自定义模型 Binder

绝对选择 1. 除非您需要非常特别的东西。如果您需要非常特殊的东西,请准确定义它,以便我们可以帮助您 2。

关于c# - 没有为此对象定义无参数构造函数 - 无法解决,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11421112/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com