simditor-markdown 无法监听事件

发布于 2022-09-04 09:39:09 字数 779 浏览 23 评论 0

有没有大神遇到过 tower的开源编辑器simditor使用了 simditor-markdown 扩展就无法监听事件了

react, jsx:

    componentDidMount () {
      this.initEditor()
    }
    
    initEditor = () => {
      this.editor = new Simditor({
        textarea: this.textArea,
        markdown: true,
        toolbar: ['title', 'bold', 'italic', 'underline', 'code', 'blockquote', '|', 'ol', 'ul', '|', 'markdown']
      })
      this.editor.setValue(marked(this.props.content))
      this.editor.on('valuechanged', (e, src) => {
       this.props.onTextChange(toMarkdown(this.editor.getValue()))
      })
    }

Tag:

  <textarea ref={textarea => (this.textArea = textarea)} />
拜托了.

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

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

发布评论

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

评论(1

北方。的韩爷 2022-09-11 09:39:09

解决方法: 覆写源码的获取value, 包装标签方法(继续didMount下):

    const editorNote = this
    simditorMarkdown.prototype._convert = function () {
      const text = this.textarea.val();
      editorNote.props.onTextChange(text)
      const markdownText = marked(text);
      // textarea
      this.editor.textarea.val(markdownText);
      // tag
      this.editor.body.html(markdownText);
      // 包了层div
      this.editor.formatter.format();
      return this.editor.formatter.decorate();
    };
    this.editor.setValue(marked(this.props.content))  

另外分享下: 表单组件建议用onchange,今天有个上传组件手贱写成了onClick, 刚开始以为state没有改变的原因,后来注意到了.

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