我正在玩Umbraco 5(完全新手),目前正在尝试使用表面控制器和宏。
我创建了一个基本的表面控制器:
public class TestSurfaceController : SurfaceController
{
//
// GET: /TestSurface/
[ChildActionOnly]
public ActionResult GetTest()
{
List<Test> test = new List<Test>();
test.Add(new Test { TestTitle = "Test" });
return View(test);
}
}
部分宏:
@inherits PartialViewMacroPage
@using Umbraco.Cms.Web
@using Umbraco.Cms.Web.Macros
@using Umbraco.Framework
@model IEnumerable<Umbraco.Models.Test>
<ul>
@foreach (var test in Model)
{
<li>@test.TestTitle</li>
}
</ul>
在我的主页模板上,我称之为:
@inherits RenderViewPage
@using System.Web.Mvc.Html;
@using Umbraco.Cms.Web;
@{
Layout = "_Layout.cshtml";
}
@section head
{
@Umbraco.RenderMacro("getTest")
}
如何才能在ul中显示测试?我得到一个错误,说如果使用模型我就不能使用继承,那么如果我带走了继承,我会收到一条消息,说明提供的模型不符合预期。
答案 0 :(得分:2)
@inherits RenderViewPage 从部分页面中删除此行,如果您愿意,我可以发布工作表面控制器操作和部分视图的示例。 希望有所帮助。 工作示例如下,
public class MDSSurfaceController : SurfaceController
{
public MDSSurfaceController(IRoutableRequestContext routableRequestContext)
: base(routableRequestContext)
{
}
[ChildActionOnly]
public PartialViewResult ApartmentListMacro(string apartmentType, string Name, string PropertyRfDicItem, string RatesperNightDict, string SleepsDict, string BedroomsDict, string BathroomsDict, string ViewDict)
{
ApartmentListModel apM = new ApartmentListModel();
//initialize model
return PartialView(apM);
}
然后我的部分视图
@using Umbraco.Cms.Packages.SystemInfo.Models
@model Umbraco.Cms.Packages.SystemInfo.Models.ApartmentListModel
@{
//Html Code
}