获取前端上传文件
importfile前端取的名字
upload_file = self.request.files.get(‘importfile‘, ‘‘)
取出来的格式
[{‘body‘: ‘abcdefg‘, ‘content_type‘: u‘text/plain‘, ‘filename‘: u‘111.txt‘}]
后台获取上传文件的格式
原文:https://www.cnblogs.com/tangpg/p/8833643.html