vue中ueditor的数据展示

发布于 2022-09-07 21:24:27 字数 2125 浏览 12 评论 0

问题描述

一个新闻编辑页面,数据得到了,不知道怎么展示到ueditor上面

相关代码

ueditor组件:
<template>
<div>

<script :id="randomId"  type="text/plain"></script>

</div>
</template>
<script>
import '../../../static/Ueditor/ueditor.config.js'
import '../../../static/Ueditor/ueditor.all.js'
import '../../../static/Ueditor/lang/zh-cn/zh-cn.js'
export default {

props: {
  ueditorConfig:{}
},
data () {
  return {
    randomId: 'editor_' + (Math.random() * 100000000000000000),
    instance: null,
  };
},
mounted () {
  this.initEditor()
},

beforeDestroy () {
  if (this.instance !== null && this.instance.destroy) {
    this.instance.destroy();
  }
},
methods: {
  initEditor () {
      this.$nextTick(() => {
        this.instance = UE.getEditor(this.randomId, this.ueditorConfig);
        this.instance.addListener('ready', () => {
          this.$emit('ready', this.instance);
          //this.instance.execCommand('inserthtml', '123')
        });
      });
  },
  getUEContent() { 
    return this.editor.getContent()
  },
}

};
</script>
编辑相关代码:
<Ueditor @ready="editorReady" ref="myTextEditor" v-model="editNewsData.newsContent" :options="editorOption" id='ueditor'></Ueditor>

import Ueditor from "../module/Ueditor";

export default {
computed: {

    editNewsData() {
        if (bus.editNewsData.id === undefined) {
            this.$router.push("/newslist");
        } else if (bus.editNewsData.thumbnail !== null) {
            let backupImgUrl = bus.editNewsData.thumbnail.split("/"); //备份当前图片路径
            this.imgUrl = backupImgUrl[backupImgUrl.length - 1];
        }
        //编辑器里面的内容bus.editNewsData.newsContent就是要展示的数据
        bus.editNewsData.newsContent = bus.editNewsData.defaultContent;
        //editor.setContent(bus.editNewsData.newsContent)
        console.log(bus.editNewsData.newsContent);
        this.backupData = bus.editNewsData;
        return bus.editNewsData;
    }
},

}

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

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

发布评论

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

评论(1

做个少女永远怀春 2022-09-14 21:24:27

已解决!自己没有看清楚

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