gpt4 book ai didi

c# - 基类中的属性未出现在 View 模型中

转载 作者:行者123 更新时间:2023-11-30 14:56:39 25 4
gpt4 key购买 nike

我有一个看起来有点像这样的基类:

public class EformBase
{
public decimal Latitude { get; set; }
public decimal Longitude {get;set;}
// lots of other properties here
}

和一个看起来像这样的派生类:

public class GraffitiViewModel : EformBase
{
public RadioButtonList<YesNoType> GraffitiOffensive { get; set; }
public RadioButtonList<YesNoType> GraffitiTag { get; set; }
// other properties here
}

我将此类用作 MVC 中的 View 模型。不幸的是,当 View 模型被回发时,基类中的属性没有出现在 View 模型中。像这样:

[HttpPost]
public ActionResult Index(GraffitiViewModel vm)
{
// add to database code
}

虚拟机在返回到此操作时不包括基类中指定的经度和纬度。我错过了什么?我是否必须做一些特别的事情才能包含基类?

最佳答案

不幸的是,您的帖子没有提及您是否(或未)在 View 中使用这两个属性(纬度和经度)。

此外,当您提到:不幸的是,当 View 模型被回发时,基类中的属性没有出现在 View 模型中。

Do you mean that you do NOT see the two properties?

OR

Do you mean that you see the two properties but the values are null?

考虑以下代码示例:

ViewModel 和基类:

public class MyViewModel : MyBaseViewModel
{
public string A { get; set; }
public string B { get; set; }
public string C { get; set; }
public string D { get; set; }
}

public class MyBaseViewModel
{
public string Z { get; set; }
}

Controller :

public class HomeController : Controller
{
public ActionResult Index()
{
var model = new MyViewModel();
return View(model);
}

[HttpPost]
public ActionResult Index(MyViewModel myViewModel)
{
var z = myViewModel.Z;
return null;
}
}

View :

@model MvcApplication1.Models.MyViewModel

@using (Html.BeginForm()) {
<fieldset>
<legend>MyViewModel</legend>
<div class="editor-label">@Html.LabelFor(model => model.A)</div>
<div class="editor-field">@Html.EditorFor(model => model.A)</div>

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

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

注意 View 如何只使用属性 A 和属性 B。

当我提交 <form>并在我的 Controller 内的 [HttpPost] 方法上放置一个断点,我可以查看我为文本框 A 和文本框 B 输入的值。

但由于我没有文本框 C 和文本框 D。这些属性将被设置为空。

恰好在我的基类中定义的属性 Z 也是如此。

因为我的 <form> 中没有使用属性 Z ,当我提交它时,我会将 null 作为值。

为了在您提交 <form> 时查看属性 Z ,你必须将它添加到你的 <form>...</form> 中像这样:

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

关于c# - 基类中的属性未出现在 View 模型中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22357331/

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