简体   繁体   中英

Ajax With Multiple File Upload

我正在制作一个画廊系统,其中有多张照片-一切都很好,但是当互联网很慢时(上传时间2分钟-_-),输入的数据将返回空。.我使用malsup的jquery表单插件来帮助ajax上传。

the bigger problem here is, that your plugin does seem to be limited by your max_execution_time php.ini setting, which kills php scripts running longer than a specified time, in this case after 2 minutes. you need a plugin that handles chunked file uploads, and blueimp is the usual way to go here.

your second question, to verify the data, can be handled by javascript (jquery) before you send it and/or by php after you received the data.

i always use blueimp ( https://github.com/blueimp/jQuery-File-Upload ) for multiple file uploads, it works well even beyond the servers script execution time limit.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM