ASP.NET MVC 属性

发布于 2024-12-15 22:56:05 字数 344 浏览 2 评论 0原文

我需要创建一个属性,该属性应使文本区域成为富文本编辑器(TinyMCE /CKEditor)。我将如何实现它?

例如,我的模型是:

public class MyModel
{
    [RichText]
    public string Detail {get;set;}
}

当它被渲染时,它应该显示一个富文本区域。

I need to create an attribute which should result in a text area to be a rich text editor (TinyMCE/CKEditor). How would I achieve it?

For example, my model is:

public class MyModel
{
    [RichText]
    public string Detail {get;set;}
}

When it gets rendered, it should show a rich text area.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

染墨丶若流云 2024-12-22 22:56:05

假设您至少使用 MVC2,请使用 [UIHint("RichText")] 指示您希望它成为 RichText 字段,然后创建一个名为 RichText.cshtml(或 .aspx,或无论您使用什么视图技术)并定义您要使用的 HTML(您必须创建 html 才能使用您正在使用的任何富文本编辑器)。

然后在您的视图中使用 EditorFor() ,它应该可以工作。

您还可以使用[DataType(DataType.Html)],然后创建 Html.cshtml EditorTemplate。

Assuming you're using at least MVC2, use [UIHint("RichText")] to indicate you want it to be a RichText field, then create an EditorTemplate called RichText.cshtml (or .aspx, or whatver view technology you're using) and define the HTML you want to use (you will have to create the html to use whatever rich text editor you're using).

Then use EditorFor() in your view, and it should work.

You could also use [DataType(DataType.Html)] and then create an Html.cshtml EditorTemplate.

仅此而已 2024-12-22 22:56:05

您可以继承DataTypeAttribute

public class RichTextAttribute : DataTypeAttribute
{
     public RichTextAttribute() : base("RichText") {}
}

您甚至可以向此属性添加验证,例如,如果您想阻止某些 HTML 标记,以便避免 XSS 攻击或其他攻击。

正如另一个答案中所述,然后您只需在 View\Shared\EditorTemplates 文件夹和显示属性使用的视图中添加 RichText.cshtml 或 RichText.ascx 的编辑器模板:

Html.EditorFor(m => m.Detail)

在编辑器模板中,您可以添加您的代码创建一个 TextArea (或者您调用 TinyMCE),然后您可以在母版页中注册一些脚本,以将 TinyMCE 附加到编辑器模板输出的任何标签。

You can inherit the DataTypeAttribute:

public class RichTextAttribute : DataTypeAttribute
{
     public RichTextAttribute() : base("RichText") {}
}

You can even add validation in to this attribute if for example you want to prevent certain HTML tags so you can avoid XSS attacks or something.

As stated in another answer, you then simply add an editor template for RichText.cshtml or RichText.ascx in the View\Shared\EditorTemplates folder and in the view where you are showing the property use:

Html.EditorFor(m => m.Detail)

In your editor template is where you would add your code to create a TextArea (or however you are invoking TinyMCE) and then you can register some script in your master page to attach TinyMCE to whatever tag your editor template outputs.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文