如何在页面循环,遍历输出控制器传过来的对象,不用分页
在页面顶部写@model IEnumerable<你的类>
输出的地方写
@foreach (var item in Model){ }
谢谢回答 刚才我已经做出来了