surmon-china/ngx-quill-editor

quill图片上传后为base64格式

lirunkai opened this issue · 3 comments

怎么能先上传到七牛这些第三方,是需要修改ngx-quill-editor的源文件么

ngx-quill-editor,QuillEditorComponent里面添加
` // 写入图片
writeImg(currentValue: any) {
this.content = currentValue;

if (this.quillEditor) {
  if (currentValue) {
    this.quillEditor.insertEmbed(10, 'image', currentValue);
    return;
  }
  this.quillEditor.setText('');
}

}`

可以实现效果,想问下, 在ngOnChanges里面或者有没有事件触发这个图片上传