TinyMCE 5:除非图像后有文字,否则图像不会显示

TinyMCE 5 : Image is not showing unless there is a text after the image

如果我们通过TinyMCE编辑器中的插入图片选项添加图片。预览显示正确。但是提交后图片就消失了

如果您在图片后面添加文本或点 (.),它会起作用。

tinymce.init({
      selector: 'textarea#myTxtID',
      height: 335,
        resize: "both",
      plugins: [
                'advlist autolink lists link image charmap print preview hr anchor pagebreak',
                'searchreplace wordcount visualblocks visualchars code fullscreen',
                'insertdatetime media nonbreaking save table contextmenu directionality',
                'emoticons template paste textcolor colorpicker textpattern imagetools'
        ],
        toolbar1: 'insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image',
        toolbar2: 'print preview media | forecolor backcolor emoticons'
    });

只有图片的时候不行

但是当有额外的文本时它会起作用

知道为什么吗?

没有找到解决方法,通过添加一个不可见的点(.)暂时修复

tinyMCE.get('myTxtID').getContent()+'<p style=\"display:none\">.</p>'