【发布时间】:2019-12-23 06:51:36
【问题描述】:
在项目中创建TestModel类,代码如下。
public class TestModel
{
public long EmailTemplateId { get; set; }
public string TemplateName { get; set; }
public string TemplateContent { get; set; }
public Nullable<System.DateTime> CreatedDate { get; set; }
public Nullable<System.DateTime> UpdatedDate { get; set; }
public Nullable<bool> IsDefaultTemplate { get; set; }
public string TemplateKey { get; set; }
public string TemplatePath { get; set; }
public string TemplateJson { get; set; }
public Nullable<bool> IsAdmin { get; set; }
public int TemplateType { get; set; }
public string TemplateTag { get; set; }
}
为控制器创建GetTestlst动作方法并获取所有数据并列出通过test.cshtml
public ActionResult GetTestlst()
{
var templist = GetTestList().ToList();
return View(templist);
}
下面的代码编写Test.cshtml页面并获取控制器中的模型列表以查看。
@using test.Helpers;
@model List<test.Entities.TestModel>
@{
ViewBag.Title = "Template";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<h2>Index</h2>
<table class="table">
<tr>
<th>
@Html.DisplayNameFor(model => model[0].EmailTemplateId)
</th>
<th>
@Html.DisplayNameFor(model => model[0].TemplateName)
</th>
<th>
@Html.DisplayNameFor(model => model[0].TemplateContent)
</th>
<th>
@Html.DisplayNameFor(model => model[0].CreatedDate)
</th>
<th>
@Html.DisplayNameFor(model => model[0].UpdatedDate)
</th>
<th>
@Html.DisplayNameFor(model => model[0].IsDefaultTemplate)
</th>
<th>
@Html.DisplayNameFor(model => model[0].TemplateKey)
</th>
<th>
@Html.DisplayNameFor(model => model[0].TemplatePath)
</th>
<th>
@Html.DisplayNameFor(model => model[0].TemplateJson)
</th>
<th>
@Html.DisplayNameFor(model => model[0].IsAdmin)
</th>
<th>
@Html.DisplayNameFor(model => model[0].TemplateType)
</th>
<th>
@Html.DisplayNameFor(model => model[0].TemplateTag)
</th>
<th></th>
</tr>
@foreach (var item in Model)
{
<tr>
<td>
@Html.DisplayFor(modelItem => item.EmailTemplateId)
</td>
<td>
@Html.DisplayFor(modelItem => item.TemplateName)
</td>
<td>
**`<iframe id="testiframe" class="iframe" src=@item.TemplateContent></iframe>`**
</td>
<td>
@Html.DisplayFor(modelItem => item.CreatedDate)
</td>
<th>
@Html.DisplayFor(model => item.UpdatedDate)
</th>
<th>
@Html.DisplayFor(model => item.IsDefaultTemplate)
</th>
<th>
@Html.DisplayFor(model => item.TemplateKey)
</th>
<th>
@Html.DisplayFor(model => item.TemplatePath)
</th>
<th>
@Html.Raw(item.TemplateJson)
</th>
<th>
@Html.DisplayFor(model => item.IsAdmin)
</th>
<th>
@Html.DisplayFor(model => item.TemplateType)
</th>
<th>
@Html.DisplayFor(model => item.TemplateTag)
</th>
<td>
@*@Html.ActionLink("Edit", "Edit", "Test", new { id = item.Id }, null) |
@Html.ActionLink("Details", "Details", "Test", new { id = item.Id }, null) |
@Html.ActionLink("Delete", "Delete", "Test", new { id = item.Id }, null)*@
</td>
</tr>
}
</table>
在图像下方显示输出。 Iframe 正确但不在模型列表中显示 Html 内容。请给出答案。
【问题讨论】:
标签: model-view-controller iframe