net mvc foreach怎样单独取出一个值

2025-01-03 03:11:48
推荐回答(1个)
回答1:

自定义一个model。 比如Index页面要用到Customer和Product两个表,可以定义一个IndexModel。 public class IndexModel { public List customers { get; set; } public List products { get; set; } } controller将你想要的IndexModel传给Index页