gpt4 book ai didi

asp.net-mvc - MVC @html.textbox 用于预填充 Guid 默认值

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

我的 Controller :

 [HttpGet]
public ActionResult AddEstablishment()
{
return View("AddEstablishment",new EstablishmentModel());
}

我的模型:

public class EstablishmentModel
{
[Display(Name = "Establishment ID")]
public Guid EstablishmentId { get; set; }
.............

我的 AddEstablishment View :

 @Html.TextBoxFor(x => x.EstablishmentId, new { @id = "inputEstGuid", @class = "input input-xlarge", @placeholder = "5C3B1CBC-2574-4E2A-A9FA-A8CA0041AB86" })

结果:

enter image description here

我的文本框预填充了 Guid 默认值

00000000-0000-0000-0000-000000000000

我怎样才能避免它?

请注意,我将模型实例传递给 View 的原因很明显。

最佳答案

这不可行吗?

 public Guid? EstablishmentId { get; set; }

只需确保在最初显示 View 时该值为 null。

关于asp.net-mvc - MVC @html.textbox 用于预填充 Guid 默认值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15137936/

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