gpt4 book ai didi

c# - MVC 4 Viewmodel 无法在回发时进行数据绑定(bind)

转载 作者:太空宇宙 更新时间:2023-11-03 10:59:33 25 4
gpt4 key购买 nike

您好。

一天多以来,我一直无法使用帖子中的值更新我的 MVC 项目中的实体模型。我已经在 SO 上阅读了 30 个相关问题,但我仍然不知道哪里出了问题。我做了一个没有 Ajax 和其他干扰的小项目,现在我可以可靠地看着它失败。我希望由您来运行它,它非常简单,所以也许更有经验的人可以轻松识别我的错误。这是我想出的:

模型和数据:

    public class StoryDB : DbContext
{
public DbSet<Story> Stories { get; set; }

}

public class Story
{
[Key]
public int StoryID { get; set; }
public string zestory { get; set; }
}

public class StoryViewModel
{
public Story stry;
}

Controller :

    //
// GET: /Story/Create
[HttpGet]
public ActionResult Create()
{
StoryViewModel svm = new StoryViewModel();
svm.stry = new Story();

return View(svm);
}

//
// POST: /Story/Create

[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Create(StoryViewModel svm)
{
if (ModelState.IsValid)
{
db.Stories.Add(svm.stry);
db.SaveChanges();
return RedirectToAction("Index");
}

return View(svm);
}

查看:

@model MvcApplication7.Models.StoryViewModel

@{
ViewBag.Title = "Create";
}

<h2>Create</h2>

@using (Html.BeginForm()) {
@Html.AntiForgeryToken()
@Html.ValidationSummary(true)

<fieldset>
<legend>Story</legend>
@Html.HiddenFor(model => model.stry.StoryID)
<div class="editor-label">
@Html.LabelFor(model => model.stry.zestory)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.stry.zestory)
@Html.ValidationMessageFor(model => model.stry.zestory)
</div>
<p>
<input type="submit" value="Create" />
</p>
</fieldset>
}

@section Scripts {
@Scripts.Render("~/bundles/jqueryval")
}

这是它生成的 HTML:

<form action="/Story/Create" method="post"><input name="__RequestVerificationToken" type="hidden" value="v0wlNDXbhykfe6IKOep6WMSZVteTDNPdgUVkQ8VcW4RW2oo-ufJSdVkN70Y0OHI4if56HrZiGLaGVy9UzlsoTkKXm963ZwRfJsuBZSVs9uQ1" />    <fieldset>
<legend>Story</legend>
<input data-val="true" data-val-number="The field StoryID must be a number." data-val-required="The StoryID field is required." id="stry_StoryID" name="stry.StoryID" type="hidden" value="0" />
<div class="editor-label">
<label for="stry_zestory">zestory</label>
</div>
<div class="editor-field">
<input class="text-box single-line" id="stry_zestory" name="stry.zestory" type="text" value="" />
<span class="field-validation-valid" data-valmsg-for="stry.zestory" data-valmsg-replace="true"></span>
</div>
<p>
<input type="submit" value="Create" />
</p>
</fieldset>
</form>

发生的事情是我没有注意到任何数据绑定(bind),并且由于传入的 View 模型的故事尝试为空,它在尝试保存时崩溃并出现错误。

我还尝试创建新的 View 模型和附属故事,并用 TryUpdateModel() 填充它们,结果是数据库中出现了空条目。

可能相关:

The Crash

Viewmodel referencetype is null

Modelstate

最佳答案

尝试将字段更改为属性:

public class StoryViewModel
{
public Story stry { get; set; }
}

关于c# - MVC 4 Viewmodel 无法在回发时进行数据绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18210683/

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