Skip to content Skip to sidebar Skip to footer

Javascript: How To Iterate Through List Of Objects In Model

so I need to get to fetch the names of students in a list of student object that is in a view's model then send them to the server via $.post, the latter I have figured it out but

Solution 1:

You have some invalid javascript over there.

First start by fixing your view model so that you have a compiling C# code (you were missing a property name):

publicclassStudentSearchResult 
{
    publicIEnumerable<Student> Students { get; set;}
}

Then assuming your controller actions sends a JSON result to the client (this ensures that the view model is properly JSON encoded and that the application/json response content type header is sent):

[HttpPost]
public ActionResult StudentSearchResult(/*other stuff I send here, */string[] studentNames)
{
    StudentSearchResult model = ... //stuff here to populate your view modelreturn Json(model);
}

you could easily iterate on the client using the $.each() function:

var studentNames = ['name1', 'name2'];
$.post('/Students/StudentSearchResult', studentNames, function(result) {
    var students = result.Students;
    $.each(students, function() {
        alert('FirstName: ' + this.FirstName + ' LastName:' + this.LastName);
    });
});

or even a plain ol' for loop if you prefer:

$.post('/Students/StudentSearchResult', studentNames, function(result) {
    var students = result.Students;
    for (var i = 0; i < students.length; i++) {
        var student = students[i];
        alert('FirstName: ' + student.FirstName + ' LastName:' + student.LastName);
    }
});

UPDATE:

It looks like I have I made a mistake by believing that you were performing an AJAX request. Instead what you need is access the model properties in javascript. Here's how this could be done:

@model StudentSearchResult
<script type="text/javascript">
    var students = @Html.Raw(Json.Encode(Model.Students));
    // students is a javascript array that will look like this:
    // students = [{"FirstName":"fn1","LastName":"ln1"}, {"FirstName":"fn2","LastName":"ln2"}, ...];
    for (var i = 0; i < students.length; i++) {
        var student = students[i];
        alert('FirstName: ' + student.FirstName + ' LastName:' + student.LastName);
    }
</script>

Solution 2:

you can use $.each of jquery to iterate the result.

$.each(yourModel,function(){//do with loop});

and for the error. you made mistake in declaration of loop variable

for (var i = 0; i < length; i++) 

Solution 3:

Looks like what you need is to output the user names to the client as JSON? Try this:

var names = @Model.StudentSearchResult.Select(s =>new { s.FirstName, s.LastName }).ToList();

I'm not quite familiar with the Razor syntax, but I think you can still understand the code above.

Solution 4:

for (var i = 0; i < length; i++) 

instead of

for (int i = 0; i < length; i++) 

should work.

Post a Comment for "Javascript: How To Iterate Through List Of Objects In Model"