ASP.NET MVC Html Helpers 可以与后代类一起使用吗?

发布于 2024-11-25 07:04:33 字数 433 浏览 1 评论 0原文

如果分部视图基于基类,是否可以检查它是否是后代类,如果是,则在 Html 帮助器(LabelFor、EditorFor 等)中使用后代类的属性?

@model ProjectX.Models.VehicleModel

<div>
     @Html.LabelFor(model => model.Fuel)
     @Html.TextBoxFor(model => model.Fuel)
</div>

@{
    if (Model is CarModel)
    {
        CarModel car = (CarModel)Model;

        @Html.LabelFor(car => car.Doors)
        @Html.TextBoxFor(car => car.Doors)
    }
}

If a partial view is based upon a base class, is it possible to check if it is a descendant class and if so, use the descndant class' properties within the Html helpers (LabelFor, EditorFor etc.)?

@model ProjectX.Models.VehicleModel

<div>
     @Html.LabelFor(model => model.Fuel)
     @Html.TextBoxFor(model => model.Fuel)
</div>

@{
    if (Model is CarModel)
    {
        CarModel car = (CarModel)Model;

        @Html.LabelFor(car => car.Doors)
        @Html.TextBoxFor(car => car.Doors)
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦途 2024-12-02 07:04:33

是的,这是可能的;试试这个...

模型类

namespace MvcApplication2.Models
{
    public class Vehicle
    {
        public string Fuel { get; set; }
    }

    public class Car : Vehicle
    {
        public int Doors { get; set; }
    }
}

视图

@model MvcApplication2.Models.Vehicle

@{
    ViewBag.Title = "Index";
}

<h2>Index</h2>


<div>
     @Html.LabelFor(model => model.Fuel)
     @Html.TextBoxFor(model => model.Fuel)
</div>

@{
    if (Model is MvcApplication2.Models.Car)
    {
        @Html.LabelFor(model => ((MvcApplication2.Models.Car)model).Doors)
        @Html.TextBoxFor(model => ((MvcApplication2.Models.Car)model).Doors)
    }
}

希望这有帮助。

Yes its possible; try this ...

Model classes

namespace MvcApplication2.Models
{
    public class Vehicle
    {
        public string Fuel { get; set; }
    }

    public class Car : Vehicle
    {
        public int Doors { get; set; }
    }
}

View

@model MvcApplication2.Models.Vehicle

@{
    ViewBag.Title = "Index";
}

<h2>Index</h2>


<div>
     @Html.LabelFor(model => model.Fuel)
     @Html.TextBoxFor(model => model.Fuel)
</div>

@{
    if (Model is MvcApplication2.Models.Car)
    {
        @Html.LabelFor(model => ((MvcApplication2.Models.Car)model).Doors)
        @Html.TextBoxFor(model => ((MvcApplication2.Models.Car)model).Doors)
    }
}

Hope this helps.

莫多说 2024-12-02 07:04:33

如果您的问题是是否可以将模型的后代与 @Html 一起使用,那么我认为没有理由不这样做。您提供的代码应该可以工作。

If your question is whether you can use descendants of Models with @Html, then I see no reason why not. The code you provide should work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文