我试图创建一个自定义HTML帮助器,该帮助器将导致MVC应用程序中出现HTML编辑器。
我一直在遵循http://dan.cx/2012/05/custom-strongly-typed-htmlhelpers-in-asp-net-mvc上的说明。我无法使它正常工作,并且完全卡住了。
这是我创建的HtmlHelper .....
public static class HTMLEditor
{
public static HtmlString RenderFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Func<TModel, TValue>> expression, int? width = 810, int? height = 200)
{
var name = html
.ViewContext
.ViewData
.TemplateInfo
.GetFullHtmlFieldName(ExpressionHelper.GetExpressionText(expression));
var metadata = ModelMetadata.FromLambdaExpression(expression, html.ViewData);
string myEditor = "<textarea id='" + name + "' ";
myEditor += "class='textarea' placeholder='' style='width: " + width + "px !important; height: " + height + "px !important'></textarea>";
myEditor += "<script>$('#" + name + "').wysihtml5({'html':true,'color': false,parser: function(html) {return html;}});";
myEditor += "editor.on('load', function() {editor.focus();editor.composer.commands.exec('insertHTML', '" + metadata.Model + "');})";
myEditor += "</script>";
return new HtmlString(myEditor);
}
}
然后,在我的Razor视图中,我试图像这样使用助手。
@HTMLEditor.RenderFor(model => model.PageDetail.HTML)
但是,一切都可以编译,但是当需要将视图呈现给浏览器时,我收到一个错误:
编译错误
说明:编译服务于此请求所需的资源期间发生错误。请查看以下特定的错误详细信息,并适当地修改您的源代码。
编译器错误消息:CS1501:方法'RenderFor'的无重载采用1个参数
我不确定问题出在哪里。我确实看到RenderFor方法有两个参数,但是我不确定如何传递模型实例值,以及如何在回发后将该值保留在模型实例中。
在这里的任何帮助将不胜感激。
谢谢
马特
最佳答案
在我看来,您在错误的对象上调用.RenderFor。
您的RenderFor方法是HtmlHelper的扩展方法。因此,您应该从视图中调用@ Html.RenderFor(model => ...)。