0

我正在使用 TinyMCE,当我尝试从 textarea 保存文本时,我收到该值无效的消息。

我试过编码和没有它,结果是一样的。

模型:

   [UIHint("tinymce_jquery_full"), AllowHtml]
    public IHtmlString Text { get; set; }

TinyMCE:

tinymce.init({
    selector: 'textarea.rte',
    height: 400,
    menubar: false,
    branding: false,
    plugins: [
        "paste",
        "advlist autolink lists link image charmap print preview anchor",
        "searchreplace visualblocks code fullscreen",
        "insertdatetime media table contextmenu paste"
    ],
    encoding: 'xml',
    paste_as_text: true,
    toolbar: "insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link"
});
4

0 回答 0