在 Django-summernote 中更改图片上传大小限制
Changing image upload size limit in Django-summernote
我正在使用 django-summernote。如何更改文件大小上传限制?我收到错误消息:"Got an error uploading an image: File size exceeds the limit allowed and cannot be used" 当我尝试使用 summernote 小部件的工具栏添加图像时。
我可以在源代码中找到它 here,但据我所知:
谢谢!
您可以使用 SUMMERNOTE_CONFIG
设置来控制图片上传限制设置。
您需要将 attachment_filesize_limit
设置添加到您的 summernote 设置中。
SUMMERNOTE_CONFIG = {
...
'attachment_filesize_limit': custom_file_limit, # specify the file size
}
我正在使用 django-summernote。如何更改文件大小上传限制?我收到错误消息:"Got an error uploading an image: File size exceeds the limit allowed and cannot be used" 当我尝试使用 summernote 小部件的工具栏添加图像时。
我可以在源代码中找到它 here,但据我所知:
谢谢!
您可以使用 SUMMERNOTE_CONFIG
设置来控制图片上传限制设置。
您需要将 attachment_filesize_limit
设置添加到您的 summernote 设置中。
SUMMERNOTE_CONFIG = {
...
'attachment_filesize_limit': custom_file_limit, # specify the file size
}