Im viewmodel-Objekt ist unten die Eigenschaft:
public IList<CollegeInformationDTO> CollegeInformationlist { get; set; }
In VIEW lautet Javascript wie folgt:
var obj = JSON.stringify('@Model.CollegeInformationlist');
alert(obj[1].State); //NOT WORKING, giving string char
$.each('@Model.CollegeInformationlist', function (i, item) {
var obj = JSON.stringify(item);
var r = $.parseJSON(obj);
alert(r.State); //just giving undefined.
});
Bitte führen Sie hier, wie ich JSON-Objekt in Javascript bekommen kann.