ios post多个file值,还能懂点input框的进来
黄舟
黄舟 2017-04-18 09:57:28
0
2
329

本人php替ios做api,我pc端php这边实现多图上传,直接input name=pic[]。
是可以多图。
但是ios这边他选了多个,但是post过来只有一个。想问这是什么问题

不是这个意思,我是说我们web端,input,一般只能一个,但是加了multiple属性就可以多个。ios这边具体怎么弄我不太清楚,但是同事他选了多个但是post过来只有一个文件,我怀疑他是不是没有开启类似multiple的东西,请提示下关键词之类的,我去告诉他查下

黄舟
黄舟

人生最曼妙的风景,竟是内心的淡定与从容!

reply all(2)
PHPzhong

The backend uses CommonsMultipartResolver to receive, and ios uses MultipartHttpServletRequest to process the stream.

洪涛

In fact, there should be multiple uploads on the iOS side, because I usually use AFN. I will only explain the situation of AFN. When AFN uploads pictures, there will be a timestamp spliced ​​there. As long as the keys are different. filenamenamename为服务器规定的字段,filename为图片名称,因为上传的list内部是键值对的形式,当filename为同一个名字的时候,服务器在接收多个键值对的时候,会出现因为键相同而覆盖之前的值的,所以后台接收了之后只是接收了最后一个。可以跟iOS端交流交流,看看让他在filename那里拼接一个时间戳或者在name

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template