#检查文件类型mime_type = magic.from_file(full_path,mime=True)logger.info("上传的文件类型:"+str(mime_type))if not mime_type.startswith('video') and not mime_type.startswith('image'): logger.error("非法的文件类型!") os.remove(full_path) return JsonResponse({'code':500,'msg':'非法的文件类型!'})