2

我正在玩 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 中显示测试?我要么得到一个错误,说如果使用模型,我不能使用继承,然后如果我拿走继承,我会收到一条消息,说提供的模型不符合预期。

4

1 回答 1

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
}
于 2012-05-12T14:31:51.383 回答