本文主要给大家介绍的是关于利用python模拟实现POST请求提交图片的方法,分享出来供大家参考学习,下面来一看看详细的介绍:
使用requests来模拟HTTP请求本来是一件非常轻松的事情,比如上传图片来说,简单的几行代码即可:
1
2
3
4
5
6
7
8
9
|
import requests files = { 'attachment_file' : ( '1.png' , open ( '1.png' , 'rb' ), 'image/png' , {})} values = { 'next' : "http://www.xxxx.com/xxxx" } r = requests.post( 'http://www.xxxx.com/upload' , files = files, data = values) # 成功 r = requests.post( 'http://www.xxxx.com/upload' , files = files, data = values) # 失败 r = requests.post( 'http://www.xxxx.com/upload' , files = files, data = values) # 失败 r = requests.post( 'http://www.xxxx.com/upload' , files = files, data = values) # 失败 r = requests.post( 'http://www.xxxx.com/upload' , files = files, data = values) # 失败 ... |
不过我今天在调试一个django程序的时候却遇到了大坑————为了偷懒,我直接在ipython中执行了上述代码,第一次提交的时候一切正常,但第二次之后提交就怎么也通过不了django的form验证。
验证部分的代码很简单:
1
2
3
4
5
6
7
|
...... form = AttachmentForm(request.POST, request.FILES) if form.is_valid(): form.save(request, obj) messages.success(request,_( 'Your attachment was uploaded.' )) return HttpResponseRedirect( next ) ...... |
什么鬼!?怎么只有第一次成功提交???后面全失败??只好一步一步的跟进到django源码中,发现问题出在django/forms/fields.py文件中:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
def to_python( self , data): if data in validators.EMPTY_VALUES: return None # UploadedFile objects should have name and size attributes. try : file_name = data.name file_size = data.size except AttributeError: raise ValidationError( self .error_messages[ 'invalid' ]) if self .max_length is not None and len (file_name) > self .max_length: error_values = { 'max' : self .max_length, 'length' : len (file_name)} raise ValidationError( self .error_messages[ 'max_length' ] % error_values) if not file_name: raise ValidationError( self .error_messages[ 'invalid' ]) if not self .allow_empty_file and not file_size: raise ValidationError( self .error_messages[ 'empty' ]) return data |
在第一次执行的时候,一切正常,这个data即InMemoryUploadFile文件类型,name、size就是我们上传的图片名、大小,而第二次执行post请求时候,发现data.size
居然变成了0?!怪不得直接引发了if not self.allow_empty_file and not file_size这
个判断的异常呢!
由此可知,问题的核心并不出现在django对于表单验证的部分,而是出自发送请求的部分。不过发请求的部分代码很简单啊?分别输出了正常情况和错误情况requests发出的请求包,发现区别了:
1
2
3
4
5
6
7
|
#正常情况 In [ 28 ]: r = requests.post( 'http://www.xxxx.com/upload' , files = files, data = values) In [ 29 ]: r.request.body #错误情况 In [ 33 ]: r = requests.post( 'http://www.xxxx.com/upload' , files = files, data = values) In [ 34 ]: r.request.body Out[ 34 ]: '--155322d3e780432bb06e58135e041c8f\r\nContent-Disposition: form-data; name="next"\r\n\r\nhttp://www.xxxx.com/upload\r\n--155322d3e780432bb06e58135e041c8f\r\nContent-Disposition: form-data; name="attachment_file"; filename="1.png"\r\nContent-Type: image/png\r\n\r\n\r\n--155322d3e780432bb06e58135e041c8f--\r\n' |
正常情况没输出,错误情况反而看着像正常情况下的输出?这不科学啊?
结合以上2点,我隐约感觉问题出在数据的构造上,关键在于files = {'attachment_file': ('1.png', open('1.png', 'rb') , 'image/png', {})}
这里,首先关于字典、列表这种可变类型作为函数的参数传递时候就需要特别注意,其次open函数打开了一个文件,那么哪里关闭文件了呢?
带着这个怀疑,我把代码改写成:
1
2
3
4
5
6
7
|
fl = open ( '1.png' , 'rb' ) files = { 'attachment_file' : ( '1.png' , fl, 'image/png' , {})} r1 = requests.post( 'http://www.xxxx.com/upload' , files = files, data = values) fl.close() fl = open ( '1.png' , 'rb' ) files = { 'attachment_file' : ( '1.png' , fl, 'image/png' , {})} r2 = requests.post( 'http://www.xxxx.com/upload' , files = files, data = values) |
然后再执行,果然成功上传了2张图片。其实按照正常情况不会出现测试时候这种打开一张图片不停上传的情形,不过也正因为这样才会遇到如此有意思的问题。关于requests中files对象的处理代码在models.py文件中,有兴趣的读者可以自行调试。
另外,requests调用时上传文件名中不能包含中文,否则也不能通过django表单验证,这里也不深究原因了。
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对服务器之家的支持。
原文链接:http://www.hi-roy.com/2016/09/14/使用python模拟POST请求提交图片/