我希望在上传之前检查文件类型:
content = self.cleaned_data['picture']
content_type = content.content_type.split('/')[0]
当我上传图片时出现错误:
'NoneType' object has no attribute 'content_type'
这里有什么不妥?
答案 0 :(得分:4)
imghdr.what
将返回图像格式为字符串(gif,png等),否则返回None
。
用法:
import imghdr
imghdr.what(value)
在上面的示例中,value
可以是文件(类似)对象或文件名。