Closed lirunkai closed 7 years ago
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里面或者有没有事件触发这个图片上传
怎么能先上传到七牛这些第三方,是需要修改ngx-quill-editor的源文件么