ViewBag是动态类耐肆型,可以在js界面昌旁轿任意强转换
public ActionResult Index()
{
var d = new List
d.Add(....)//这里比如有 A B C D E F G 7个值
ViewBag.Data = d;
return View(ViewBag);
}
前台
@foreach(var item in (List
{
}
想单独输出 也是先(List
比如
就输出了数组第6个元素 也就是F。