我的控制器中有一个动作:
public ActionResult ProductSpec()
{
var pvc = new CMS()
{
//blah blah blah
};
var count_item = DataContext.GetItemReferences();
ViewData["ttttt"] = count_item; //8
return View(pvc);
}
然后我ViewData["ttttt"]
在我的视图中显示,但结果是System.Collections.Generic.List1[EWeb.Models.Pro]
.
谁能告诉我如何解决它。