富文本编辑器UEditor使用
我这里主要是后端配置问题,参考下面博客即可
参考: https://blog.csdn.net/qq_36737803/article/details/90670317
上传参考: https://blog.csdn.net/lan_xuewei/article/details/82353680
回显:
//回显富文本内容
function showContent() {
$.post("/team/intro/showContent", function (res) {
if (res.success) {
let ue = UE.getEditor('editor');
ue.ready(function () {
ue.execCommand("insertHtml", res.data);
})
} else {
}
})
}