You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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,
Get all the base64 image in the Quill input (QillField.conent).
Post the images to your s3 storage.
Get the values from the S3 storage.
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........." />
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
The text was updated successfully, but these errors were encountered: