Open B-VAMSHIDHARREDDY opened 1 year ago
also interested for the solution
Django-Quill, will post the image in this format <img src="base64/........." />
i think you can make a parser to parse the result from the Quill input,
and change the values of the base64 to the results of the s3 storage
ex : <img scr="base64/........." />
==> <img scr="https://s3.my-storage.eu3........." />
hope it helps
Currently, django-quill-editor encodes images as base64 and stores them in the DB. (This allows you to use files without setting up static files, but it is inefficient.)
There is a way to use a separate storage in the milestone, but it is difficult to devote time to it at the moment. If you are dealing with large files that are difficult to store in the DB, you should use another editor that supports the file-upload function.
QUILL_CONFIGS = {
}
This is my Quill config.
"image_upload_url": "/questions/quill-image-upload/",---- it is not working. Please help me