gpt4 book ai didi

asp.net-mvc - asp.net mvc 脚手架和 GUID 作为主键

转载 作者:行者123 更新时间:2023-12-02 14:31:04 24 4
gpt4 key购买 nike

我有一个具有以下结构的表

GUID uniqueidentifier with default value newid(), and set as primary key
ID int
Description varchar(max)

我使用 Visual Studio 创建了一个实体模型,并生成了用于编辑/删除等的 View (mvc 脚手架)

问题在于“编辑”,当我单击该链接时,会显示带有正确数据的适当表单,但“保存”按钮根本不起作用。请注意,其他链接(删除、创建、详细信息)工作正常..

因此,当我单击“编辑”链接时,网址为

http://localhost:10871/admin/Edit/e7d0c5ee-7782-411f-920e-7b0d93c924e1

并且表单显示正确,但保存按钮不起作用,没有网络事件发生。使用 uniqueidentifers 作为主键有什么特别之处吗?

谢谢

---代码---

编辑.cshtml

@using (Html.BeginForm()) {
@Html.ValidationSummary(true)
<fieldset>
<legend>Domain</legend>

@Html.HiddenFor(model => model.GUID)

@Html.HiddenFor(model => model.ID)

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

<p>
<input type="submit" value="Save" />
</p>
</fieldset>
}

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

--AdminController.cs--

//获取:/Admin/Edit/5

public ActionResult Edit(Guid id)
{
Domain domain = db.Domains.Single(d => d.GUID == id);
return View(domain);
}

//
// POST: /Admin/Edit/5

[HttpPost]
public ActionResult Edit(Domain domain)
{
if (ModelState.IsValid)
{
db.Domains.Attach(domain);
db.ObjectStateManager.ChangeObjectState(domain, EntityState.Modified);
db.SaveChanges();
return RedirectToAction("Index");
}
return View(domain);
}

编辑2为了响应 ZippyV 的评论,我在 Edit.cshtml 中添加了以下代码

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

令我惊讶(或无知) - 显示的是 GUID 而不是 ID GUID is shown as ID

除此之外 - 当我在该字段中输入值(1,2 或任何整数)时,我仍然收到消息“字段 ID 必须是数字。”

最佳答案

问题来自于您的 View 模型上有一个名为 ID 的属性:

public class Domain
{
public int ID { get; set; }
...
}

同时,您的 Edit Controller 操作中有一个名为 id 的路由参数:

public ActionResult Edit(Guid id)
{
...
}

现在发生的事情是这样的:Html 帮助器(例如 TextBoxFor、HiddenFor 等)在绑定(bind)值(即查询字符串参数、路由值)时总是首先查看模型状态,并且仅在最后才查看模型中的值。这就是所有 Html 助手的工作方式,并且是设计使然。

所以你有以下内容:

@Html.HiddenFor(model => model.ID)

ID 不是取自模型,而是取自您的路线数据(这是您的操作参数中指定的 Guid)。这就是为什么在 View 模型和操作参数中使用同名的属性是非常危险的。

一种可能的解决方法是将操作参数重命名为其他名称:

public ActionResult Edit(Guid domainId)
{
Domain domain = db.Domains.Single(d => d.GUID == domainId);
return View(domain);
}

当然,现在您的路由可能需要调整或使用查询字符串参数:controller/edit?domainId=d578b4b7-48ec-4846-8a49-2120c17b6441 来调用“编辑”操作。

关于asp.net-mvc - asp.net mvc 脚手架和 GUID 作为主键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6764865/

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