Django的max_upload_size被忽略

时间:2018-12-29 13:00:31

标签: python django django-models field

我有这段代码,但是出于某种原因,即使我在formatChecker.py上直接将其设置为('max_upload_size',5242880),文件大小也被忽略了。 >

settings.py

MAX_UPLOAD_SIZE = "5242880"

formatChecker.py

from django.db.models import FileField
from django.forms import forms
from django.template.defaultfilters import filesizeformat
from django.utils.translation import ugettext_lazy as _
from myproject.settings import MAX_UPLOAD_SIZE


class ContentTypeRestrictedFileField(FileField):
    """
    Same as FileField, but you can specify:
        * content_types - list containing allowed content_types. Example: ['application/pdf', 'image/jpeg']
        * max_upload_size - a number indicating the maximum file size allowed for upload.
            2.5MB - 2621440
            5MB - 5242880
            10MB - 10485760
            20MB - 20971520
            50MB - 5242880
            100MB 104857600
            250MB - 214958080
            500MB - 429916160
    """

    def __init__(self, *args, **kwargs):
        self.content_types = kwargs.pop('content_types', [])

        super(ContentTypeRestrictedFileField, self).__init__(*args, **kwargs)

    def clean(self, *args, **kwargs):
        data = super(ContentTypeRestrictedFileField, self).clean(*args, **kwargs)

        file = data.file
        try:
            content_type = file.content_type
            if content_type in self.content_types:
                if file._size > int(MAX_UPLOAD_SIZE):
                    raise forms.ValidationError(_('Please keep filesize under %s. Current filesize %s') % (
                        filesizeformat(MAX_UPLOAD_SIZE), filesizeformat(file._size)))
            else:
                raise forms.ValidationError(_('Filetype not supported.'))
        except AttributeError:
            pass
        return data

models.py

...
class Post(models.Model):
    postattachment = ContentTypeRestrictedFileField(
      blank=True,
      null=True,
      upload_to=get_file_path_user_uploads,
      content_types=['application/pdf',
                     'application/zip',
                     'application/x-rar-compressed',
                     'application/x-tar',
                     'image/gif',
                     'image/jpeg',
                     'image/png',
                     'image/svg+xml',
                     ]
     )
...

知道为什么会出现此问题吗? 我在这里忘了东西吗?

预先感谢

1 个答案:

答案 0 :(得分:1)

MAX_UPLOAD_SIZE = "5242880"中添加setting.py

然后在视图文件中

from django.conf import settings
file._size > settings.MAX_UPLOAD_SIZE

file._size > int(settings.MAX_UPLOAD_SIZE)

在init方法中,它会弹出两个键,因此它不存在

    def __init__(self, *args, **kwargs):
       self.content_types = kwargs.pop('content_types', [])
       self.max_upload_size = kwargs.pop('max_upload_size',[])

因此删除这些行

self.content_types = kwargs.pop('content_types', [])
self.max_upload_size = kwargs.pop('max_upload_size', [])