Pass Objects from a controller to a view MVC [duplicate]

丶灬走出姿态 提交于 2019-12-23 03:50:34

问题


I started in a new job, we must create an app using MVC 5, i have no experience in .NET so I not sure if I am using the best practice.

I have 2 models ClassRom and Students,

public class Student
{
    public int ID { get; set; }
    public string Name { get; set; }
    public int Age { get; set; }
}

 public class ClassRom
{
    public int ID { get; set; }
    public string Name { get; set; }
}

I am passing a ICollection<> from a controller to a views using ViewBag

IList<ClassRom> classes = db.Classes.ToList();
IList<Student> students = db.Students.ToList();
ViewBag.classes = classes;
ViewBag.students = students;
return View();

And using the data in a view

<div>
@foreach (var student in ViewBag.students)
{
    <div>@student.Name</div>
    <div>@student.Age</div>
}  

It works pretty well for what I need, anyway if I add a Scaffolded Controller, it will create something like this:

public ActionResult Index()
    {
        return View(db.Students.ToList());
    }

And the view

@model IEnumerable<School.Models.Student>
@foreach (var item in Model) {
<tr>
    <td>
        @Html.DisplayFor(modelItem => item.Name)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.Age)
    </td>
    <td>
        @Html.ActionLink("Edit", "Edit", new { id=item.ID }) |
        @Html.ActionLink("Details", "Details", new { id=item.ID }) |
        @Html.ActionLink("Delete", "Delete", new { id=item.ID })
    </td>
</tr>

}

My question is, Am i doing it wrong? should I use @model IEnumerable instead of ViewBag?


回答1:


It is better to use @model IEnumerable because:

  • It is statically typed. A ViewBag is dynamic so you lose type safety.
  • It leads to a cleaner design where components (ViewModels and Models can be reused).

PS: ClassRom should be ClassRoom I believe.

Good luck!




回答2:


Under normal circumstances you should be using the model using @model and @Model in your view. The @model (lowercase) is used to define the TYPE of your model.

If you were passing an instance of your own class such as the below:

public class MyClass
{
    public IEnumerable<string> MyProperty { get; set; }
}

You would define the type as @model MyClass and access the values using @Model.MyProperty in your view.

Generally, the best practice would not be to use the ViewBag to pass your model to the view and this will not be accessible using @Model in your view. In order for the values to be accessed in your view using @Model, you would need to pass be returned like so:

public ActionResult Index()
{
    // Create your model and set the values
    var myModel = new MyClass
    {
        MyProperty = new List<string> { "First Value", "Second Value" }
    };

    // Return the model back to your view for access using @Model
    return View(myModel);
}



回答3:


I would always use a model when creating a view. The viewbag is too loose for my liking. IEnumerable is fine for the model as it's an immutable collection from the models perspective.



来源:https://stackoverflow.com/questions/38573349/pass-objects-from-a-controller-to-a-view-mvc

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!