微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

asp.net-mvc-4 – MVC4 ViewBag或ViewModel还是?

我需要以数据库中两个不同模型的列表形式将数据发送到MVC4项目中的视图.

像这样的东西:

控制器:

public ActionResult Index()
{
    Entities db = new Entities();

    ViewData["Cats"] = db.Cats.toList();
    ViewData["Dogs"] = db.Dogs.toList();

    return View();
}

视图:

@* LIST ONE *@
<table>
    <tr>
        <th>
            @Html.displayNameFor(model => model.ListOneColOne)
        </th>
        <th>
            @Html.displayNameFor(model => model.ListOneColTwo)
        </th>
        <th>
            @Html.displayNameFor(model => model.ListOneColThree)
        </th>
    </tr>

@foreach (var item in @ViewData["Cats"]) {
    <tr>
        <td>
            @Html.displayFor(modelItem => item.ListOneColOne)
        </td>
        <td>
            @Html.displayFor(modelItem => item.ListOneColTwo)
        </td>
        <td>
            @Html.displayFor(modelItem => item.ListOneColThree)
        </td>
    </tr>


@* LIST TWO *@
<table>
    <tr>
        <th>
            @Html.displayNameFor(model => model.ListTwoColOne)
        </th>
        <th>
            @Html.displayNameFor(model => model.ListTwoColTwo)
        </th>
        <th>
            @Html.displayNameFor(model => model.ListTwoColThree)
        </th>
    </tr>

@foreach (var item in @ViewData["Dogs"]) {
    <tr>
        <td>
            @Html.displayFor(modelItem => item.ListTwoColOne)
        </td>
        <td>
            @Html.displayFor(modelItem => item.ListTwoColTwo)
        </td>
        <td>
            @Html.displayFor(modelItem => item.ListTwoColThree)
        </td>
    </tr>

视图将显示两个列表,每个模型一个列表.

我不确定最有效的方法是什么?

视图模型?

可视数据/ Viewbag?

别的什么?

(请不要第三方建议)

更新:

此外,我已经尝试了一个多小时来实现建议List< T>的答案了. viewmodel没有任何运气.我相信这是因为我的viewmodel看起来像这样:

public class galleryviewmodel
{
    public Cat cat { get; set; }
    public Dog dog { get; set; }
}

解决方法

尝试解释您的问题和您的目标,因此我们(特别)知道您正在尝试做什么.

我认为这意味着您有两个列表,并且您希望将它们发送到视图.一种方法是将两个列表放入模型并将模型发送到视图,但您似乎已经指定您已经有两个模型,因此我将采用该假设.

调节器

public ActionResult Index()
{
    ModelA myModelA = new ModelA();
    ModelB myModelB = new ModelB();

    Indexviewmodel viewmodel = new Indexviewmodel();

    viewmodel.myModelA = myModelA;
    viewmodel.myModelB = myModelB;

    return View(viewmodel);
}

查看模型

public class Indexviewmodel
{
    public ModelA myModelA { get; set; }
    public ModelB myModelB { get; set; }
}

模型

public class ModelA
{
    public List<String> ListA { get; set; }
}

public class ModelB
{
    public List<String> ListB { get; set; }
}

视图

@model Indexviewmodel

@foreach (String item in model.myModelA)
{
    @item.ToString()
}

(抱歉,如果我的C#生锈了)

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐