我正在使用 asp.net MVC4 进行 Web 应用程序开发。
我想从 ViewModel 遍历对象列表。
下面是对象的类:
public class User
{
public int Id {get; set;}
public string Name {get; set;}
public string Address {get; set;}
public string Department {get; set;}
}
下面是我的ViewModel
课:
public class UserViewModel
{
public List<User> AllUsers {get; set;}
public bool IsDeleted {get; set;}
}
正如在UserViewModel
课堂上看到的,我有一个类型为 的对象列表User
。现在我想遍历AllUsers
列表中的每个用户对象Jquery
并从中获取数据。
为此,我尝试执行以下操作:
$(@Model.AllUsers).each( function(){ .... });
我使用上述方法尝试了不同的组合,但没有成功。任何人都可以提出相同的解决方案。
提前致谢。