1

嗨,我正在使用 c# 在 mvc4 中做我的项目

我的控制器中有列表

   public ActionResult Gallery()
    {
        string folderpath = Server.MapPath("~/Content/Gallery/GalleryImages");
        List<String> currentimage = new Gallery().GetGalleryName(folderpath);
        return View(currentimage);
    }

我想在我的视图中列出 currentimage 中的项目,这怎么可能,我正在尝试以下

@model List<String>
@foreach(var item in Model)
 {
  <p>
      @item   // what will be write here..
 </p>
 }
4

0 回答 0