我在CKEditor中使用FMath编辑器插件,它将方程式作为base64图像插入,当我保存帖子时,它已正确保存在数据库中,但是当我从数据库中检索并加载它时在CKEditor内部,然后剥离base64图像。
答案 0 :(得分:0)
可能是因为您的ckeditor代码不允许使用“内容”。请按以下方式加载ckeditor:
<script type="text/javascript">
CKEDITOR.replace('note', {
allowedContent: true
});
</script>