0
我有一個使用強類型模型的局部視圖。是否有可能將我的模型映射到我的部分視圖在HTML幫助器方法中的飛行並返回呈現的HTML?將模型動態映射到視圖
這是僞代碼,我想知道是否有可能。
public static MvcHtmlString ContentRating(this HtmlHelper html, ContentKey contentKey)
{
ContentRatingModel contentRatingModel = new ContentRatingHelper().GetContentRatingModel(contentKey);
// map my partial view which is named "ContentRating.cshtml" to contentRatingModel
return new MvcHtmlString(string.Format("the html output of mapping");
}
而在視圖中使用這個輔助方法如下:
@Html.ContentRating(ContentKey.Test)
非常感謝。那正是我要找的。我會在7分鐘內接受你的回答。 :) – anilca 2013-02-22 13:25:06