FineUI 官方论坛

标题: MVC 前台Columns怎么使用foreach [打印本页]

作者: zzp495888462    时间: 2017-7-6 08:19
标题: MVC 前台Columns怎么使用foreach
  1. @model IEnumerable<MvcMusicStore.Models.Album>
  2. @{
  3.     ViewBag.Title = "Index";
  4. }
  5. <h2>
  6.     Index</h2>
  7. <p>
  8.     @Html.ActionLink("Create New", "Create")
  9. </p>
  10. <table>
  11.     <tr>
  12.         <th>
  13.             Genre
  14.         </th>
  15.         <th>
  16.             Artist
  17.         </th>
  18.         <th>
  19.             Title
  20.         </th>
  21.         <th>
  22.             Price
  23.         </th>
  24.         <th>
  25.         </th>
  26.     </tr>
  27.     @foreach (var item in Model)
  28.     {
  29.         <tr>
  30.             <td>
  31.                 @Html.DisplayFor(modelItem => item.Genre.Name)
  32.             </td>
  33.             <td>
  34.                 @Truncate(item.Artist.Name, 25)
  35.             </td>
  36.             <td>
  37.                 @Truncate(item.Title, 25)
  38.             </td>
  39.             <td>
  40.                 @Html.DisplayFor(modelItem => item.Price)
  41.             </td>
  42.             <td>
  43.                 @Html.ActionLink("Edit", "Edit", new { id = item.AlbumId }) |
  44.                 @Html.ActionLink("Details", "Details", new { id = item.AlbumId }) |
  45.                 @Html.ActionLink("Delete", "Delete", new { id = item.AlbumId })
  46.             </td>
  47.         </tr>
  48.     }
  49. </table>
复制代码
类似上面MVC5中使用foreach   在FineUIMVC 中怎么实现

作者: Neal.六道    时间: 2017-7-10 17:40
一样可以用啊,FineUI只是JS控件方面帮你封了一下,你完全可以抛弃不用




欢迎光临 FineUI 官方论坛 (https://fineui.com/BBS/) Powered by Discuz! X3.4