NET MVC 返回model是List类型怎么绑定
答案:2 悬赏:30 手机版
解决时间 2021-03-22 05:08
- 提问者网友:暗中人
- 2021-03-21 13:30
NET MVC 返回model是List类型怎么绑定
最佳答案
- 五星知识达人网友:过活
- 2021-03-21 13:48
你返回是什么类型,View就model什么类型嘛
@model List
注意User的命名空间,加上即可
@model List<【命名空间】.User>
@if(Model!=null && Model.Count>0)
{
foreach(var item in Model)
{
//
}
}
@model List
注意User的命名空间,加上即可
@model List<【命名空间】.User>
@if(Model!=null && Model.Count>0)
{
foreach(var item in Model)
{
//
}
}
全部回答
- 1楼网友:七十二街
- 2021-03-21 14:57
一个model:
source code:
namespace insus.net.models
{
public class book
{
public string publishing { get; set; }
public string isbn { get; set; }
public datetime publicationdate { get; set; }
}
}
view code
创建一个实体,也就是准备数据集合:
source code:
namespace insus.net.entities
{
public class bookentity
{
public ienumerable getbook = new list { new book { publishing = "商务出版社",isbn="13468564394",publicationdate=convert.todatetime("2016-04-13")},
new book { publishing = "中华出版社",isbn="56634565746",publicationdate=convert.todatetime("2016-01-19")},
new book { publishing = "海天出版社",isbn="78234235454",publicationdate=convert.todatetime("2016-03-22")},
new book { publishing = "云贵出版社",isbn="46724356756",publicationdate
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯