gpt4 book ai didi

asp.net-mvc - 帖子上的 Mvc 模型 ID 0

转载 作者:行者123 更新时间:2023-12-04 11:51:46 25 4
gpt4 key购买 nike

我的模型有一个编辑页面。当我将模型发布回我的 Controller 时,Id 属性为 0。我如何在发布时维护 Id 属性?

我正在发布要查看的模型,因此在获取请求时设置了 Id 属性。我的代码如下。

看法:

@model xandra.Models.ProjectModel

@using(Html.BeginForm())
{
@Html.HiddenFor(m => m.Id)
@Html.LabelFor(m => m.Name)
@Html.TextBoxFor(m => m.Name)

<br />

@Html.LabelFor(m => m.Description)
@Html.TextAreaFor(m => m.Description)

<br />

@Html.LabelFor(m => m.Website)
@Html.TextBoxFor(m => m.Website)

<br />

@Html.LabelFor(m => m.Active)
@Html.CheckBoxFor(m => m.Active)

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

Controller :
[Authorize]
[HttpGet]
[InitializeSimpleMembership]
public ActionResult EditProject(string id)
{
using (var entity = new dixraContext())
{
var project = entity.Projects.FirstOrDefault(m => m.UrlName == id);


return View(project);
}
}

[Authorize]
[HttpPost]
[InitializeSimpleMembership]
public ActionResult EditProject(ProjectModel model)
{
using (var entity = new dixraContext())
{
var project = entity.Projects.FirstOrDefault(m => m.Id == model.Id);

project.Name = model.Name;
project.Description = model.Description;
project.Website = model.Website;
project.Tags = model.Tags;
project.Active = model.Active;

entity.SaveChanges();

return RedirectToAction("GetProject", project.UrlName);
}
}

还有我的模特
public class ProjectModel
{
[Key]
[Required]
public long Id { get; set; }

[Required(AllowEmptyStrings=false)]
public string Name { get; set; }

[Required(AllowEmptyStrings=false)]
public string Description { get; set; }

[Required]
public DateTime CreatedDate { get; set; }

[Required]
public int Creator { get; set; }

public string Website { get; set; }

[Required]
public int CategoryId { get; set; }

public virtual List<TagModel> Tags { get; set; }

public string UrlName { get; set; }

public bool Active { get; set; }
}

最佳答案

我以前见过这种情况,这可能是一个错误。我已经能够通过不使用特定的 View 模板语法添加我需要包含在帖子中的属性来解决它。

而是 这个的:

@Html.HiddenFor(m => m.Id)

用这个 :
<input type="hidden" value="@Model.Id" name="Id"/> 

关于asp.net-mvc - 帖子上的 Mvc 模型 ID 0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25392045/

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